What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / siva
1 1 2
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Why do we use c for the speed of light?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the translation phases used in c language?
What is indirection? How many levels of pointers can you have?
Explain what standard functions are available to manipulate strings?
how to count no of words,characters,lines in a paragraph.
what is the syallabus of computer science students in group- 1?
What is getch c?
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
What does the c preprocessor do?
What is a list in c?
What is malloc() function?
What is the difference between union and structure in c?
What are multidimensional arrays?
Why is c still so popular?