What will be the output of the following
C code?
#include <stdio.h>
int main()
int a = 1,b=1,c;
c=a+++ b;
printf("%d, %d", a,b);
Answers
Answered by
1
Answer:
The output of C code
a=2
b=1
Similar questions