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
int main(){
printf("Hello World");
getch();
return 0;
}