Question 4
Write the output of this program
Not yet
main()
answered
Marked out of
100
int *a, *s, i;
P Flag
question
s= a = (int *) malloc( 4* sizeof(int));
for (i=0; i<4; i++) *(a+i) = i +10;
printf("%d\n", *s++);
printf("%d\n", (*s)++);
printf("%d\n", *s);
printf("%d\n", *++s);
printf("%d\n", ++"s);
WWW
Answers
Answered by
2
Answer:
sorry unable to understand your question!!
Similar questions