What will be the output of the program #include<stdio.h> int main() { static int arr[] = {0, 1, 2, 3, 4}; int *p[] = {arr, arr+1, arr+2, arr+3, arr+4}; int **ptr=p; ptr++; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); *ptr++; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); *++ptr; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); ++*ptr; printf("%d, %d, %d\n", ptr-p, *ptr-arr, **ptr); return 0; }
Comments and Answers (2)
Saurabh
anyone have any solutions
Sanket
please give any soltion
{{SampleComment.userName || "Your Name"}} ~ {{SampleComment.userCity}}
{{SampleComment.commentValue || "Your Answer or Comment goes here...."}}