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};
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
ANSWER: 2 :long int l = 2.35;