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 |
Can include files be nested? How many levels deep can include files be nested?
What is the difference b/w Structure & Union?
i want to job in your company, so how it will be possible.
write a program to find out number of on bits in a number?
What are header files in c programming?
What is function definition in c?
what is a function pointer and how all to declare ,define and implement it ???
Explain what is #line used for?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
What is the difference between variable declaration and variable definition in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What's the right way to use errno?