main()
{
int *ptr=(int*)malloc(sizeof(int));
*ptr=4;
printf("%d",(*ptr)+++*ptr++);
}
Answer Posted / abhishek
(*ptr)++ = 5
(*ptr)++ = 5
(*ptr)+++(*ptr)++ = 5 + 5 = 10
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are the 5 organizational structures?
Explain union. What are its advantages?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Why n++ execute faster than n+1 ?
What is formal argument?
What are the features of c languages?
What is a double c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What are the application of c?
Can i use “int” data type to store the value 32768? Why?
Explain what is the difference between functions getch() and getche()?
Is c procedural or object oriented?
What is the explanation for prototype function in c?
What is a MAC Address?
What is an lvalue in c?