Write a program that prints the word "Hello" on the screen.
Difficulty level

This exercise is mostly suitable for students
#include <stdio.h>
void main()
{
printf("Hello \n"); /* prints Hello on standard output */
}
Back to the list of exercises
Looking for a more challenging exercise, try this one !!
