Saved Bookmarks
| 1. |
What is the output of the following code snippet?#include main(){int const a=5;a++;printf("%d",a);} |
|
Answer» Explanation: It has post increment of variable 'a' so it will PRINT 5 in the DISPLAY... |
|