Define the following terms:
a Token
b. Keyword
c. Literal
d. Implicit conversion
e. Datatype
Answers
Answer:
Explanation:
a. TOKEN: is the smallest unit in a 'C' program. It is each and every word and punctuation that you come across in your C program.
b. KEYWORDS: are predefined, reserved words used in programming that have special meanings to the compiler. Keywords are part of the syntax and they cannot be used as an identifier.
c. LITERAL: are the constant values assigned to the constant variables. We can say that the literals represent the fixed values that cannot be modified.
d. IMPLICIT CONVERSION: Implicit type conversion happens automatically when a value is copied to its compatible data type. During conversion, strict rules for type conversion are applied. If the operands are of two different data types, then an operand having lower data type is automatically converted into a higher data type.
e. DATATYPE: are defined as the data storage format that a variable can store a data to perform a specific operation. Data types are used to define a variable before to use in a program.