#include<stdio.h> int main() { enum color{red, green, blue}; typedef enum color mycolor; mycolor m = red; printf("%d", m); return 0; }
Discuss About this Question.
#include<stdio.h> int main() { typedef char (*(*arrfptr[3])())[10]; arrfptr x; return 0; }
typedef char *charp; const charp P;
typedef int *ptr; ptr p1, p2;
To install on iPhone/iPad: tap Share → Add to Home Screen.
Discuss About this Question.