Programming in C - I/O Operations

31. The output of the following program
main( )
{
int a = 1, b = 2, c = 3;
  printf("%d", a += (a += 3, 5, a));
}
will be

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


32. The statement printf ("%d", 10 ? 0 ? 5 : 11 : 12 ) ;

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


33. The statement printf ("%d", ++5) ; prints

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


34. The statement printf ("%d", ( a++) ) ; prints

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


35. The statement printf ( "%d" , sizeof (" "')); prints

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *