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
Can true be a variable name in c?
What is function prototype in c with example?
what do the 'c' and 'v' in argc and argv stand for?
Can we assign integer value to char in c?
Explain is it valid to address one element beyond the end of an array?
What is the use of function overloading in C?
How was c created?
What are the types of operators in c?
Explain how can I make sure that my program is the only one accessing a file?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What are 'near' and 'far' pointers?
What is the difference between malloc() and calloc()?
What is s or c?
How to define structures? ·