void main()
{
int i=5;
printf("%d",i++ + ++i);
}

Answer Posted / surenda pal singh chouhan

Output Cannot be predicted exactly.

Explanation:
Side effects are involved in the evaluation of i

Is This Answer Correct ?    13 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what do u mean by Direct access files? then can u explain about Direct Access Files?

1642


What are the types of pointers?

600


Define C in your own Language.

640


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

655


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

2455






How do you determine a file’s attributes?

602


What are the applications of c language?

626


What does calloc stand for?

651


How can I find the modification date and time of a file?

604


The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration

634


What is line in c preprocessor?

614


How can I make sure that my program is the only one accessing a file?

678


Is there a built-in function in C that can be used for sorting data?

744


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?

1918


What is scope rule of function in c?

552