What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / chandrakala
error: i doesn't declared in a correct way
int i=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many header files are in c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
In a switch statement, explain what will happen if a break statement is omitted?
Explain bit masking in c?
What are multibyte characters?
What is string concatenation in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is character set?
Is boolean a datatype in c?
How can I access an I o board directly?
What does char * * argv mean in c?
What does the error message "DGROUP exceeds 64K" mean?
What are the different types of data structures in c?
Explain about C function prototype?
What is difference between && and & in c?