C Programming - Declarations and Initializations - Discussion
Discussion Forum : Declarations and Initializations - General Questions (Q.No. 7)
7.
Which of the following is not user defined data type?
1 : |
|
2 : |
|
3 : |
|
Answer: Option
Explanation:
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.)
Discussion:
48 comments Page 2 of 5.
Sivaraman said:
10 years ago
How to identify user-defined data type? Give example.
Bhujbal said:
1 decade ago
The answer should be 1 and 2 both more precisely.
Bal said:
1 decade ago
Hey I think m little bit confused user defined data types are typedef n enum and derived data types are structure array etc.
Kumar said:
1 decade ago
So basically only secondary data types are user defined? am I correct.
Harsha said:
1 decade ago
@Jjjay.
We can write long int as.
Long int i = 2.35.
It is syntactically correct in c lang.
The question is which one is not user defined data type, as long int, int are predefined in c language.
We can write long int as.
Long int i = 2.35.
It is syntactically correct in c lang.
The question is which one is not user defined data type, as long int, int are predefined in c language.
Arpit said:
1 decade ago
string is a user defined datatype because we can define string as char name[20] string is an array of character.
Jjjay said:
1 decade ago
We can't write long int l = 2.35;
If you want to declare long int.
Write it like this:
long int l=2.35L
If you want to declare long int.
Write it like this:
long int l=2.35L
Mayu said:
1 decade ago
Then what is "long int l = 2.35;" data type called ?
Reshma said:
1 decade ago
String is user defined data type or primary data type? can anyone explain.
Amol Kotwal said:
1 decade ago
What is difference between Long int and Float data types?
Can anyone explain it?
Can anyone explain it?
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers