1.

What is the output of the following code snippet?#include main(){int const a=5;a++;printf("%d",a);}

Answer»

ANSWER: 5

Explanation:

It has post increment of variable 'a' so it will PRINT 5 in the DISPLAY...



Discussion

No Comment Found