14 lines
271 B
C
14 lines
271 B
C
|
/**
|
||
|
* 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;
|
||
|
}
|