What will be the output of the following c code?
void array(int **p);
int main()
{
int arr[2][3] = {{3, 6, 9 }, {12, 15, 18}};
int *ptr;
ptr = &arr;
array(&ptr);
return 0;
}
void array(int ** *p)
{
printf("%d", **p);
}
Answers
Answered by
0
hihyuhh
hujh
huug
hujh
hhjhujghuhghj
hhjbhbbjnh
Similar questions