533 views
1 votes
1 votes

What it means ?

int (*p)[R][C];

1 Answer

1 votes
1 votes

Declare p as pointer to array of R elements of the array C elements of integer type.

Related questions

1 votes
1 votes
0 answers
2
K ANKITH KUMAR asked Aug 10, 2018
1,254 views
#include <stdio.h>main(){ int arr[5]; printf("%p,%p\n",arr,&arr);}How do both print the same address?
0 votes
0 votes
1 answer
3
atul_21 asked Jun 2, 2017
638 views
What is the output of the above program?Explanation:(*(*(*p) -2)) = E (*(*(*p)[0]+1)) = A E - A = 4
0 votes
0 votes
0 answers
4
Aakash1125 asked Apr 26, 2017
832 views
how this question gives -3? according to rule both pointers must pointing to same array then only difference ie ptr1-ptr2 is used but here how answer always is -3???Turbo...