what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / richa
3,2,2
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is array a primitive data type in c?
What does char * * argv mean in c?
Do you have any idea about the use of "auto" keyword?
What are unions in c?
What is void main () in c?
How can you check to see whether a symbol is defined?
Explain what are run-time errors?
What is the right type to use for boolean values in c? Is there a standard type?
program to convert a integer to string in c language'
Write the test cases for checking a variable having value in range -10.0 to +10.0?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How can I recover the file name given an open stream or file descriptor?
What are the keywords in c?
Is it possible to execute code even after the program exits the main() function?
Why isn't any of this standardized in c? Any real program has to do some of these things.