main()
{
int *ptr=(int*)malloc(sizeof(int));
*ptr=4;
printf("%d",(*ptr)+++*ptr++);
}
a)7
b) 9
c) Runtime error
d) none
Answers
Answered by
0
Explanation:
sjdjhdhdndjjdjejejjejejejejjejwjwjiwjwkkeiwiwiwkekskd
Answered by
0
Answer:
9
Explanation:
hello, if the problem is.
int *p=(int*)malloc(sizeof(int));
*p=4;
printf("%d",(*p)+++(*p)++);
o/p is 9;
it is just similar the case of post incremental operation of
variable like i+++i++.
Similar questions