Write a program to print hello in C ?
Hello aspirant,
Hello world is the basic and the first code which we learns while learning the programming language.
So I am providing you the code of hello world please learn it and try to execute.
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
Hope this helps you
Please let nmw know if you face any difficulty in learning the programming language.