0
void main() { int a=3,b=4,c=6; printf("â d â d â d"); getch(); } The output of this program is 6 4 3 why? can anyone explain this?
5 Answers
+ 1
there is no specific order for evaluation of those variables ,result might vary for each compiler . if u want that in line then u can do it as follows
printf("%d %d %d",a,b,c);
+ 1
no I got one answer like this the variables which we are declared are stored in stack so those will pop out like that
0
printf("%d %d %d",a,b,c)
0
getch() is taking the character value so the output is like tht
0
state the output produced by the printf statement is
printft[%d%d%d",12,12.5,345];