You are on page 1of 2

Hello World

A code of how to print the Hello World text using C

#include <stdio.h>
#include <conio.h>

int main() {
printf(Hello World!);
getch();
}

You might also like