Structure of ‘C’ Program
The Structure of ‘C’ Program
“C Language also
has the Standard Structure “
<
Include Header Files >
[Global
Declarations]
Main (
)
{
< Local Declarations>;
< Local Declarations>;
< Statements>;
}
}
// Execution
Start from the main ( )
1-Printing a Text Message
# Include <Stdio.h>
Main ( )
{
Printf
(“Welcome to C Programming”);
}
Comments
Post a Comment