What does the following declaration mean?
int (*ptr)[10];

Home | Discussion Forum

What does the following declaration mean?
int (*ptr)[10];

View More Related Question

1) What will be the output of the following code?

void main()
{
int a[10];
printf("%d %d", a[-1], a[12]);
}

2) What will be the output of following program code?

#include <stdio.h>
int main(void)
{
char p;
char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8};
p = (buf + 1)[5];
printf("%d", p);
return 0;
}

3) What will be printed after execution of the following code?

void main()
{
int arr[10] = {1,2,3,4,5};
printf("%d", arr[5]);
}

4) What is right way to Initialize array?

5) What is the maximum number of dimensions an array in C may have?

UP Gk Online Test

taiyari24hour.com