Computer Science, asked by itsmeaishu2000, 30 days ago

What will be the output of the following program in C?
1 #include <stdio.h>
2 int main()
3 {
4. static int x=-1;
5 if(x++) {
6 printf("\n%d",x);
7
main();
8 }
9 return 0;
10}​

Answers

Answered by kritirajwar1234
0

Answer:

I think it shows error in coding.

Similar questions