Write a programm in C to print ‘Hello World’.

Code:-

If you want to print ‘Hello World’ using c programming then you can copy the below code and paste it in any text editor you are using and see below output will be displayed

				
					#include<stdio.h>
    int main(){
        printf("Hello World");
        
        getch();
        return 0;
    }
				
			

Output:-

Write a programm in C to print ‘Hello World’

Leave a Comment

Your email address will not be published. Required fields are marked *