C Keywords | My CS Tutorial - My CS Tutorial

Breaking

Programming languages full tutorial and programs, exam papers, visual basic( Vb.net ), information of new technologies and more....

Thursday, March 28, 2019

C Keywords | My CS Tutorial

C language Keywords


In this post,we will know that what is keywords in C language and how used in C programs.


C Keywords

Keywords are words that have already been interpreted to the C compiler.
Keywords can not be used as variable names because if we do this, then we are trying to give a new meaning to the keyword that is not allowed by the computer.
The Keywords are also called 'Reserved words'.
      There are only 32 keywords available in C language .Which are following...

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




1 comment: