What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navya
1,1,2
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
i want to know the procedure of qualcomm for getting a job through offcampus
What are the types of c language?
How can I make it pause before closing the program output window?
diff between exptected result and requirement?
What does it mean when the linker says that _end is undefined?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How the c program is executed?
Explain what are multidimensional arrays?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Can main () be called recursively?
Explain the difference between malloc() and calloc() in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is void pointers in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What are run-time errors?