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


Please Help Members By Posting Answers For Below Questions

What is the advantage of an array over individual variables?

746


Which type of language is c?

656


With the help of using classes, write a program to add two numbers.

622


How to create struct variables?

597


Explain what are the different data types in c?

761






A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

650


What does a pointer variable always consist of?

667


Why & is used in c?

716


How are pointers declared in c?

603


design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.

1499


What are control structures? What are the different types?

600


Is using exit() the same as using return?

682


Explain what is the best way to comment out a section of code that contains comments?

724


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

1078


what are bit fields in c?

609