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
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is c programing language?
What is the difference between text files and binary files?
What is a function simple definition?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
How can a process change an environment variable in its caller?
How can I access an I o board directly?
What is the use of putchar function?
What is n in c?
Explain how do you sort filenames in a directory?
What is a rvalue?
What is array of structure in c programming?
How to set file pointer to beginning c?
I have seen function declarations that look like this
I need a sort of an approximate strcmp routine?