Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 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}; ?->(Show Answer!)
1. 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};
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
C data types classification are Primary data types int char float double void Secondary data types (or) User-defined data type Array Pointer Structure Union Enum So, clearly long int l = 2.35; is not User-defined data type.
(i.e.long int l = 2.35; is the answer.)
(i.e.long int l = 2.35; is the answer.)