initial checkin from subversion
This commit is contained in:
14
nr1.c
Normal file
14
nr1.c
Normal file
@@ -0,0 +1,14 @@
|
||||
/* 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 */
|
||||
Reference in New Issue
Block a user