Datei: inout1.c
1 /* 2 * inout1.c 3 * Ein- / Ausgabe - Integer 4 * klin, Thu Oct 28 14:38:35 1999 5 */ 6 7 #include <stdio.h> 8 9 void main(void) 10 { 11 int ein; 12 13 printf("Bitte Integer eingeben: "); 14 scanf("%d", &ein); 15 printf("Eingabe war: %d\n", ein); 16 17 } /* main() */
Erzeugt von c2html 1.01 |