C Programming Keyword
C Keyword 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; 1.Keywords are those words whose meaning is already defined by Compiler 2.Cannot be used as Variable Name 3.There are 32 Keywords in C 4.C Keywords are also called as Reserved words . 32 Keywords in C Programming Language auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void default goto sizeof volatile do if static while Identifiers In C language identifiers are the names given to variables, constants, functions and user-define data. These identifier are defined against a set of rules. << PREVIOUS >> ...
Comments
Post a Comment