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
Explain how do you determine the length of a string value that was stored in a variable?
What is structure data type in c?
What are structure types in C?
What is multidimensional arrays
Why is #define used?
Are global variables static in c?
Why cant I open a file by its explicit path?
How can you avoid including a header more than once?
Write a program to check whether a number is prime or not using c?
What are examples of structures?
What is c programing language?
Which is more efficient, a switch statement or an if else chain?
while initialization of array why we use a[][2] why not a[2][]...?
Differentiate Source Codes from Object Codes
How do you sort filenames in a directory?