Which of the following is not user defined data type?
1 :
struct book { char name[10]; float price; int pages; };
2 :
long int l = 2.35;
3 :
enum day {Sun, Mon, Tue, Wed};
Answer: Option B
Explanation:
C data types classification are
So, clearly long int l = 2.35; is not User-defined data type.(i.e.long int l = 2.35; is the answer.)