0

What is the output of this code?

#include<stdio.h> #include<conio.h> void main() { int i=10; int j=10; int i,j; i=10;j=10; int i=10;j=10; int i,j=10; int i=j=10; printf("%d",i); printf("%d",j); getch(); }

14th Sep 2017, 12:15 PM
Xerox
Xerox - avatar
2 Answers
+ 9
You will get error why you are declaring variables again and again.
14th Sep 2017, 12:21 PM
P R
P R - avatar
0
this question is comes under the sallaybus of gate
14th Sep 2017, 1:11 PM
Xerox
Xerox - avatar