WHICH OF THE FOLLOWING DOESNOT USE IN "C" LANGUAGE) *
2 points
A DIGIT
AN INTEGER
A CHARACTER
A WORD
Other:
Answers
Answered by
0
A word is not used in C language.
- All the given options are data types in C language except 'word'.
- There are three types of data types in C language: primary, derived and user defined.
- Primary data type: the fundamental ones such as integer( int), floating point( float), character( char) and double.
- Derived data type: derived from the fundamental ones such as arrays, functions and pointers.
- User defined data type: defined by the users such as structure, union and enumeration.
Answered by
0
Answer:
Word
Explanation:
Among the various options given the correct option is word. WORD is not any data type which is part of C library.
Data type;
This represents the type of data, whether is a string, integer, floating point etc. This is important because without selecting right data type, we might not get desired output.
Now word is not a data type becasue of the fact that words or strings are defined using the data type of character. It is written as char.
Similar questions