Structure of ‘C’ Program

The Structure of ‘C’ Program
“C Language also has the Standard Structure “
                < Include Header Files >
                [Global Declarations]
                Main ( )
                     {
                         < Local Declarations>;
                           < Statements>;
                     }

             //   Execution Start from the main ( ) 


1-Printing a Text Message

# Include <Stdio.h>
 Main ( )
                  {  
                                Printf (“Welcome to C Programming”);
}              

Comments

Popular posts from this blog

Run Commands Either Works in the Windows XP or Windows 7 or Both Operating Systems