recategorized by
107 views
1 votes
1 votes
#include <stdio.h>

int main() {
int (*a)[2];
int arr[4][4]={1,2,3,4,6,7,8,9};
a=arr;
++a;
printf("%d",**a);
return 0;
}

what is the answer NUMARICAL--------------------------------?

recategorized by

1 Answer

Related questions

517
views
1 answers
3 votes
GO Classes asked Apr 30, 2022
517 views
What will be the output of the following C program?#include<stdio.h> int main() { static int p[] = {1, 2, 3, 0, 5, 6}; static int *q[] = {p+2, p+1, p, p+3, p+4, p+5}; ... q+3}; int ***pt; pt = r + 2; printf("%d", ***(pt+3)-**(q+1)); }