Basic Structure of C Programming tccicomputercoaching.com Following structure helps programmer to develop code easily in C Programming.
1. documentation 2. directive preprocessor stdio.h (printf-scanf) #include<stdio.h> conio.h (clrscr - getch) 3.#define (optional) 4. global declaration(optional) 5. void main() { ----execution start int a,b; clrscr();
------------------>1. declaration part