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
Is it better to bitshift a value than to multiply by 2?
How can I find out if there are characters available for reading?
Can you please explain the difference between syntax vs logical error?
How do we make a global variable accessible across files? Explain the extern keyword?
find out largest elemant of diagonalmatrix
How do you determine a file’s attributes?
Why main is not a keyword in c?
What is malloc calloc and realloc in c?
How do I use strcmp?
Is malloc memset faster than calloc?
How can I open a file so that other programs can update it at the same time?
What are the rules for the identifier?
What is the advantage of a random access file?
What is the use of ?
Explain high-order and low-order bytes.