#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / drashti
3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is identifier in c?
c language interview questions & answer
Is it cc or c in a letter?
Why we use conio h in c?
What does the c preprocessor do?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What does != Mean in c?
State two uses of pointers in C?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Why n++ execute faster than n+1 ?
What are local static variables? How can you use them?
What is the explanation for the dangling pointer in c?
Is c is a middle level language?
What is pointer to pointer in c with example?
Why is python slower than c?