What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answers were Sorted based on User's Feedback
Answer / chandrakala
error: i doesn't declared in a correct way
int i=1
Is This Answer Correct ? | 0 Yes | 0 No |
Can we access array using pointer in c language?
Is c procedural or functional?
How can I read in an object file and jump to locations in it?
which one is highest Priority in c? a)=,b)+,c)++,d)==
simple program for virtual function?
What are multibyte characters?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
What is the use of keyword VOLATILE in C?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
State the difference between x3 and x[3].
What are macros in C?
is c language is a object oreinted language?