#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / stephen john
i got the answer is 3,4,4.
why?
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What is indirection? How many levels of pointers can you have?
Can you please explain the scope of static variables?
Where can I get an ansi-compatible lint?
How do c compilers work?
What is omp_num_threads?
What is the process to generate random numbers in c programming language?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is assert and when would I use it?
Where are local variables stored in c?
Differentiate between new and malloc(), delete and free() ?
What would be an example of a structure analogous to structure c?
Explain how can you restore a redirected standard stream?
What is the general form of #line preprocessor?
Why is c still so popular?