Computer Science, asked by ITzCrazyBoy95, 11 hours ago

write the short note of keywords.​

Answers

Answered by shristi3895
4

Answer:

  • A word is a sequence of characters that the C compiler readily accepts and recognizes while being used in a program .
  • Note that the keywords are all lowercase...
  • Keywords are the words whose meaning has already been explained to the C compiler and their meaning cannot be changed.

Answered by ItzImperceptible
40

\huge \: {\mid{\fbox{\tt{Answer}}\mid}}

A keyword is a sequence of characters that the C compiler readily accepts and recognizes while being used in a program. Note that the keywords are all lowercase.

Keywords are the words whose meaning has already been explained to the C compiler and their meanings cannot be changed.

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. For example: int money; Here, int is a keyword that indicates money is a variable of type int (integer).

Similar questions