Files
clearn/nr1.c

15 lines
293 B
C
Raw Permalink Normal View History

2017-02-07 20:03:49 +00:00
/* Das erste C Programm */
/* nr1.c */
/* header file / Informationsdatei */
#include <stdio.h>
/* Hauptprogramm */
int main () /* funktionskopf */
{ /* Blockbeginn */
/* Funktionsaufruf */
puts ("\nHier bin ich! \n");
/* Ende mit R<>ckgabewert */
return 0;
} /* Blockende */