get c

challenge/1Hello, world

instructions.md

Challenge 01 — Hello, world

Welcome to the terminal. Your job is to make this program speak.

Objective

Write a C program that prints exactly:

hello, world

(with a trailing newline — use \n inside printf)

Spec

  1. Include stdio.h.
  2. Use printf (not puts) for this exercise.
  3. End the line with a newline (\n).
  4. No extra characters (no !, no spaces before/after).

Hint

printf("hello, world\n");

When you are ready, hit Run Code. The terminal will tell you clearly whether you PASSED or FAILED.

Pass this challenge to continue.

main.c

Loading editor…
Output will appear here after you run your code.