Hello World
#include < stdio.h >
//tells compiler to include std input output header file.
//tells compiler to include std input output header file.
int main()
{
printf("Hello world\n");
//prints Hello world on user screen
return 0;
}
{
printf("Hello world\n");
//prints Hello world on user screen
return 0;
}
Comments
Post a Comment