What will be the output of the following C code?
#include int main() { int a = 1, b = 1, c; c = a++ + b; printf("a=%d, b=%d", a, b); }
Thanks for contributing an answer!
\(........\)
Avoid writing here -
a=2 , b=1
ouput can be seen in image
382 questions
257 answers
105 comments
155 users