642 views
4 votes
4 votes
main ( )

{

static char [3] [4] = {“abcd”, “mnop”, “fghi”};

putchar (**a);

}

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
Debargha Mitra Roy asked Apr 16
67 views
#include <stdio.h int main() { int a[3] = {1, 3, 5, 7, 9, 11}; int *ptr = a[0]; ptr += sizeof(int); printf("%d", *ptr); return 0; }(Assume size of int to be $2$ bytes.)T...
2 votes
2 votes
1 answer
2
1 votes
1 votes
1 answer
3
Sparsh-NJ asked Jul 15, 2023
384 views
Can an array store elements of different storage classes?