I used Turbo C compiler #include<stdio.h> #include<conio.h> #define STYLE1 char void main() { typedef char STYLE2; STYLE1 x; STYLE2...
typedef int T; main() { T T=5; //no error } but in the following case, I get an error main() { typedef int T; T T=5; /error }
Separate names with a comma.