main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / pranu
655
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Why functions are used in c?
What is bss in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Is javascript based on c?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Can you please explain the difference between exit() and _exit() function?
What is the significance of scope resolution operator?
What are the disadvantages of c language?
What does the file stdio.h contain?
how do you execute a c program in unix.
Why c is faster than c++?
What do you mean by recursion in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Does c have class?