Here is the hello world program which is show at starting of every programming class of every programming language.
#include “stdio.h”
void main()
{
printf(“Hello world!\n”);
}
Here is the hello world program which is show at starting of every programming class of every programming language.
#include “stdio.h”
void main()
{
printf(“Hello world!\n”);
}