//www.programizbasic.blogspot.com
#include <stdio.h>
int main()
{
printf("\n");
printf("Hello world");
printf("\n");
return 0;
}
Explain:
So First of all open your editor and create a new file hello.c and paste this code and press f9 button on your keyboard.And the result shown as below.This is your first program in your programming life . Please write this code and try again .
There First of all used header file And then we used main function in C programming . For line break we used \n and then we write our first program Hello world.
C program is a mother of language in programming world if you really want a programmer you must be need to know C program.
No comments:
Post a Comment