What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navi
1 1 1
| Is This Answer Correct ? | 2 Yes | 14 No |
Post New Answer View All Answers
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
why programs in c are running with out #include
What is echo in c programming?
How many keywords are there in c?
Explain how can you determine the size of an allocated portion of memory?
How can I read in an object file and jump to locations in it?
Write a program that accept anumber in words
How can I read/write structures from/to data files?
How can you pass an array to a function by value?
What is f'n in math?
What is advantage of pointer in c?
What are the basic data types associated with c?
What is string concatenation in c?
How does normalization of huge pointer works?