main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / mani
4 5 5
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why do we need functions in c?
What do header files do?
What is structure in c language?
How can I get the current date or time of day in a c program?
What are header files in c programming?
Explain why C language is procedural?
Why clrscr is used in c?
What are the differences between new and malloc in C?
Is it possible to execute code even after the program exits the main() function?
Is there a way to compare two structure variables?
what does static variable mean?
What are local static variables?
What are # preprocessor operator in c?
What is meant by keywords in c?
Does c have an equivalent to pascals with statement?