what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sebestiraj
1,2,3
| Is This Answer Correct ? | 1 Yes | 14 No |
Post New Answer View All Answers
What does #pragma once mean?
What is the use of c language in real life?
What is a lookup table in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain what are preprocessor directives?
What are the types of variables in c?
How can I recover the file name given an open stream?
Hi can anyone tell what is a start up code?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is time complexity c?
What are the main characteristics of c language describe the structure of ac program?
List a few unconditional control statement in c.
What is getch() function?
State two uses of pointers in C?