Currently browsing tag

Structure of C program

Understanding Functions in C Programming

  A function is a module or block of program code which deals with a particular task. Making functions is a way of isolating one block of code from other independent blocks of code. Functions serve two purposes. They allow a programmer to say: this piece of code does a …

Structure of C Program

Structure of C Program

Structure of C Program Even program in C language are written using different compilers, a good programmer follows a pre-planned structure to write a program. One can have their own way of writing programs. In this article I have summarized a simple structure for writing a program in C. Structure …