Keywords in C Language
C LANGUAGE
Keywords in C Language
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 identifier.
For example -- int a;
Here, int is a keyword that indicates 'a' is a variable of type integer.
As C is a case sensitive language, all keywords must be written in lowercase. Above is a list of all keywords allowed in ANSI C.
If this article is helpful to you then please like share.. thank you...
Comments
Post a Comment