void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / nagaraju
332
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Does c have enums?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What are the features of the c language?
cavium networks written test pattern ..
What is d'n in c?
What is a spanning Tree?
Why is this loop always executing once?
Who invented bcpl language?
What is the use of define in c?
What is the difference between scanf and fscanf?
What is mean by data types in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How do you write a program which produces its own source code as output?
What is typedef struct in c?
Which function in C can be used to append a string to another string?