C Program to display string "Hello" on the screen

12:48 AM
#include
void main()
{
printf("Hello");
}

0 Comments