What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / pooja keshri
321
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between āgā and āgā in C?
What is the difference between abs() and fabs() functions?
What is the difference between array and linked list in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Explain how do you view the path?
What is the basic structure of c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Why c is called a middle level language?
Why do we need volatile in c?
write a program to find out prime number using sieve case?
What is the c language function prototype?
What is dynamic dispatch in c++?
What do you mean by command line argument?
Is it valid to address one element beyond the end of an array?