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

Popular posts from this blog

Important Announcements(download all my book free)

O LEVEL- INTERNET TECHNOLOGY & WEB DESIGN

Call by Reference with Pointer in C Language part-4-a