topic/Typedef
Start Test
Question No
Title
Type
Marks
576.
What is x in the following program?#include<stdio.h> int main() { typedef char (*(*arrfptr[3])())[10]; arrfptr x; return 0; }
MCQ
5
574.
In the following code, theP2is Integer Pointer or Integer?typedef int *ptr; ptr p1, p2;
MCQ
5
575.
In the following code what is 'P'?typedef char *charp; const charp P;
MCQ
5