C Programming and Technical Programming Arrays

#include
void main()
{
int a=3,b=6,c=8;
printf("%d %d %d");
getch();
}
the output is
8 6 3
HOW?

Read Solution (Total 9)

C Other Question

whta is the ouput if we execute this code
#include
extern int x;
int main()
{
do{
do{
printf("%o",x);
}
while(!-2);
}
while(0);
}
return 0;
}int x=8;
#include
void main()
{
int i;
for(i=0;i<10;i++)
{
if(i<5)
continue;
else
break;
printf("%d",i);
}
}