This program is often used to introduce programming language to a beginner. So, let’s get started.
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
Comments
Post a Comment