Thursday, 16 July 2015

Explain C Program Step By Step

The C Program Can Be Explained Using Simple Program. Because, Understand Every One Way Of Learning in C Program & also Explain  comments where do use in c program. 

Program

#include<stdio.h>                                    //  This is a preprocessor directive

int main(void)                                           //  This is identifiers the function main()

{                                                               //  This marks the beginning of main()

printf("Welcome Alltechprograms");        //  This line outputs a quotation 

return 0;                                                   //  This return control to the operating system 

}                                                              //  This marks the end of the main() 


Then above the Symbol  //. Using For C Program Explain time. ( Good Way Understand ). Now , Comments also Be Used Explain Symbols in c program  /* sum text */ .

Comments Using Sample in C Program

#include<stdio.h>   /* This Line is a Preprocessor   directive  */


logo

No comments:

Post a Comment