main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / sanjay kumar
Undefined behaviour
| Is This Answer Correct ? | 7 Yes | 21 No |
Post New Answer View All Answers
What are the loops in c?
Did c have any year 2000 problems?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Explain zero based addressing.
Can we access the array using a pointer in c language?
How many levels of pointers can you have?
If the size of int data type is two bytes, what is the range of signed int data type?
What is dynamic memory allocation?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is far pointer in c?
What is the use of header files?
Write a program to reverse a given number in c language?
Why can arithmetic operations not be performed on void pointers?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
There seem to be a few missing operators ..