जॉइन Examsbookउत्तर :
What would be the output of the following program?
main()
{
int i=2 ;
printf ("\n%d%d", ++i, ++i );
}5
प्र: What would be the output of the following program? main() { int i=2 ; printf ("\n%d%d", ++i, ++i ); }
- उत्तर देखेंउत्तर छिपाएं
- Workspace
उत्तर :
व्याख्या :
Output may vary from compiler to compiler. The order of evaluation of the arguments to a function call is unspecified.

