c-uebungen/Assignment_001/solution/hello.c

14 lines
271 B
C
Raw Normal View History

2023-05-21 21:10:46 +02:00
/**
* Simples Hello-World-Programm.
*
* Schreiben Sie ein Programm, das unter Verwendung von
* `printf` aus `<stdio.h>` den Text `Hello, World`
* ausgibt.
*/
#include <stdio.h>
int main(int argc, char** argv) {
printf("%s\n", "Hello, World!");
return 0;
}