Computer Science, asked by Noname1200, 7 months ago

WHICH OF THE FOLLOWING DOESNOT USE IN "C" LANGUAGE) *

2 points

A DIGIT

AN INTEGER

A CHARACTER

A WORD

Other:


Answers

Answered by orangesquirrel
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.
  1. Primary data type: the fundamental ones such as integer( int), floating point( float), character( char) and double.
  2. Derived data type: derived from the fundamental ones such as arrays, functions and pointers.
  3. User defined data type: defined by the users such as structure, union and enumeration.
Answered by nidaeamann
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