|
/**
|
|
* 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;
|
|
}
|