So for any programming language the first code is the Hello World program.
The code follows:
#include<stdio.h>
#include<conio.h>
int main()
{
printf("Hello World");
getch();
return 0;
}
// The output follows:
Hello World
Try it yourself,
The compiler link is:
https://www.onlinegdb.com/