Home / Computer Science / C Language

C Language

C Language

First C Program

First C Program: First every c program must have one main() function. C program execution always start from main(). Every statement ends with semicolon(;). #include <stdio.h> #include<conio.h> void main() { printf(“Hello, world\n”); getch(); } #include <stdio.h> includes the standard input output library functions. The printf() function was defined in stdio.h file. #include <conio.h> includes …

Read More »