Question: What does the following declaration mean? int (*ptr)[10];
A
B
C
D
ptr is array of pointers to 10 integers
B
ptr is a pointer to an array of 10 integers
C
ptr is an array of 10 integers
D
ptr is an pointer to array
Note: Not available
FILE *fp; fp = fopen("source.txt", "rb");
#include<stdio.h> int main() { FILE *fp; fp=fopen("trial", "r"); return 0; }
FILE *fp; fp = fopen("NOTES.TXT", "r+");
#include<stdio.h> float a=3.14; double b=3.14;
typedef int *ptr; ptr p1, p2;
typedef char *charp; const charp P;
typedef char *charp; const charp P;