Example of C part 1 hello world

               Hello world
#include<stdio.h>
main()
{
printf("Hello World\n");
}
Output
Hello World

Print Numbers