Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 227 Bytes

Hello world.md

File metadata and controls

16 lines (12 loc) · 227 Bytes

/*This is a simple challenge to help you practice.

Input Format

You do not need to read any input in this challenge.

Output Format

Print "Hello world". */ #include <stdio.h> int main() { printf("Hello world"); return 0; }