1.

What will be the output of the followingC code?#include int main()int a = 1,b=1,c;c=a+++ b;printf("%d, %d", a,b);​

Answer»

ANSWER:

The OUTPUT of C code

a=2

b=1



Discussion

No Comment Found