top of page
Writer's picture_Romeyo Boy_

Rules For Creating A C Program


Following are the rules for creating a program in C;

  1. In this, all the keywords are in lowercase.

  2. C language is case sensitive. As if else and IF ELSE are different from.

  3. Keywords Words cannot be used for any other purpose, that is, they cannot be used as variables in the name of a function.

  4. /* ......... */ and // are used in C language for comments.

  5. When the execution of the program starts, then we always call the main( ) function first.



8 views0 comments

Recent Posts

See All

Comments


bottom of page