| 51. |
What will be the output of following code.
{ int x = 10, y=15; x = x++; y = ++y; printf(“%d, %d \n” , x, y); }
|
||||||||
|
Answer:
Option (b) |
| 52. |
Any C program
|
||||||||
|
Answer:
Option (a) |
| 53. |
Which is a correct ‘C’ expression?
|
||||||||
|
Answer:
Option (a) |
| 54. |
If we want to increment the value of sum by 1. Which of following should be used?
|
||||||||
|
Answer:
Option (d) |
| 55. |
Which of following is not a valid assignment expression?
|
||||||||
|
Answer:
Option (d) |
| 56. |
What should be written in the program to get newline on the screen?
|
||||||||
|
Answer:
Option (a) |
| 57. |
ASCII value of ‘a’ is
|
||||||||
|
Answer:
Option (a) |
| 58. |
A float requires ______bytes in memory
|
||||||||
|
Answer:
Option (d) |
| 59. |
Which of the following operator is used to select a member of a structure variable
|
||||||||
|
Answer:
Option (a) |
| 60. |
What is the starting point of C program execution?
|
||||||||
|
Answer:
Option (b) |