What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / hariram
3 2 1
| Is This Answer Correct ? | 18 Yes | 6 No |
Post New Answer View All Answers
Why we use break in c?
What is a null string in c?
How to create struct variables?
Tell me the use of bit field in c language?
What is the use of getchar functions?
What is const volatile variable in c?
Is c procedural or functional?
What is the difference between fread and fwrite function?
Explain the difference between the local variable and global variable in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Can a pointer point to null?
Explain c preprocessor?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the difference between class and object in c?
Why clrscr is used after variable declaration?