MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statement is correct about the code snippet given below? #include < stdio> int main() { int n = 12, k; printf( %d , (k = sizeof( n + 12.0))++); return 0; } |
| A. | The code will print 17 |
| B. | The code will print 5 |
| C. | The code will result compile time error |
| D. | The code will print 4 |
| Answer» D. The code will print 4 | |