find out the error if any if a>10; a++; { print ("%d,a"); }
Answers
Answered by
2
Answer:
In declaration.
program:
int a =0;
if(a>10)
a++;
printf("%d", a);
hope this will help you.
Similar questions