QP School
Writing your first "Hello, World!" program - Printable Version

+- QP School (https://qomplainerzschool.lima-city.de)
+-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3)
+--- Forum: C 18 Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=32)
+--- Thread: Writing your first "Hello, World!" program (/showthread.php?tid=5074)



Writing your first "Hello, World!" program - Qomplainerz - 07-25-2023

The "Hello, World!" program is a simple introductory program that prints the text "Hello, World!" to the console. Here's how you can do it:

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}