Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* * hello.c — the traditional first C program. * Compile: gcc hello.c -o hello * Run: ./hello */ #include <stdio.h> /* standard I/O library */ int main(void) { /* printf writes formatted text to stdout */ printf("Hello, World! "); /* * main() returns an int to the operating system. * 0 conventionally means "success". */ return 0; }
Result
Open