15 lines
293 B
C
15 lines
293 B
C
|
|
/* 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 */
|