Enter your email address:

Delivered by FeedBurner

Tuesday, December 14, 2010

C keywords

Keywords are the words whose meaning has already been explained to C compiler. The keywords Cannot be used as variable names because if we do so, we are trying to assign a new meaning to the keywords, which is not allowed by the computer. Some C compilers allow you to construct variable names that exactly resemble the keywords. 

 

The Keywords are also called ‘Reserved Words’. There are only 32 Keywords available in C.

 

List Of 32 keywords available in C

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

3 comments:

Related Posts Plugin for WordPress, Blogger...