<AptiCode/>

The ultimate platform for developers to practice, compete, and grow. Join our community of passionate coders today.

TwitterLinkedIn

Platform

ProblemsCompilerAptitude TestsContests

Company

About UsContactRewardsContribute

Legal

Terms of ServicePrivacy PolicyShipping PolicyRefund Policy

© 2025 AptiCode. All rights reserved.

Made withfor developers

topic/Typedef

Question NoTitleTypeMarks
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