What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answers were Sorted based on User's Feedback
Answer / chandrakala
error: i doesn't declared in a correct way
int i=1
| Is This Answer Correct ? | 0 Yes | 0 No |
How to write a program to receive an integer & find its octal equivalent by using for loop?
How to find a missed value, if you want to store 100 values in a 99 sized array?
Difference between for loop and while loop?
When can a far pointer be used?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
What does *p++ do?
read an array and search an element
Does c have function or method?
how to print 212 as Twohundreds twelve plz provide me ans soon
What is variables in c?
write a c program to check weather a particluar bit is set or not?
What is the purpose of 'register' keyword?