Zum Hauptinhalt springen

C - Hello World

1#include <stdio.h>
2
3int main()
4{
5    printf("hello world!");
6
7    return 1;
8}