A Simple C Program
A simple C program basically consists of the following parts − Preprocessor Commands Functions Variables Statements & Expressions Comments Basic structure of C program #include #include int main() { /* first C program */ printf(“Hello”); return 0; } Above shown the basic structure of C program. For every program we have to write above mention … Read more