Tuesday, April 23, 2019

Print Hello World in C

print hello world in c,print hello world in c without using printf,hello world in c,hello world in c language

//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.


print hello world in c,print hello world in c without using printf,hello world in c,hello world in c language



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

Post Top Ad

Pages