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 is a spanning Tree?
How does free() know explain how much memory to release?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Is there any possibility to create customized header file with c programming language?
What are pointers? What are different types of pointers?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
in iso what are the common technological language?
What's the difference between constant char *p and char * constant p?
Write a program to print factorial of given number without using recursion?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is bss in c?
write a program to generate address labels using structures?
Can a variable be both constant and volatile?
What is a file descriptor in c?
For what purpose null pointer used?