You are on page 1of 1

Question : Write a C program which prints Hello WOrLD to stdin.

It should not have any string header


file function. Curb your capitalization of first words of a line.

Answer:

#include<stdio.h>

void main()
{
printf(“Hello WOrLD”);
}

You might also like