C Objective Questions 8
152. What is the output? void main() { int a; a=100; printf(“%d %d”,++a,++a); } 153. What is the output? void main() { int i=-1; +i; printf(“i = %d, +i = %d \n”,i,+i); } 154. Which of the following is not a valid operator? A) + B)++ C)+++ D)+= 155. Which of the following daa type cannot be used with operator %? A) char B)double C)float D) Both B and C Attend Free Demo and Learn C LANGUAGE ONLINE TRAINING by Real-Time Expert 156. What is the output of the following code? void main() { int x = 10; const int y = x; x = x + 2; printf(“%d [...]