Structure of a C Program
The structure of a C program is a protocol (rules) to the programmer, which he has to follow while writing a C program. The general basic structure of C program is shown in the figure below. Based on this structure, we can sketch a C program. Example: /* This program accepts a number & displays it to the user*/ #include <stdio.h> #include <conio.h> void main(void) {
The post Structure of a C Program appeared first on Creative Brains.
from Structure of a C Program














