void main()
{
int i=5;
printf("%d",i+++++i);
}
Answer Posted / mukul garg
i=5;
i++ + ++i;
5+7=12
ans:12
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are 'near' and 'far' pointers?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Do character constants represent numerical values?
code for find determinent of amatrix
What is uint8 in c?
What is the difference between variable declaration and variable definition in c?
why we wont use '&' sing in aceesing the string using scanf
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. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
Is array a primitive data type in c?
What is dynamic variable in c?
Differentiate between ordinary variable and pointer in c.
write a program to print largest number of each row of a 2D array
Explain what is meant by high-order and low-order bytes?
Explain what is the difference between null and nul?
Does c have circular shift operators?