Systemnahe Programmierung in C: t5.c |
1#include <stdio.h>
2
3int
4main (int argc, char *argv[])
5{
6 int probe;
7
8 printf ("Wieviele Fehler sind in diesem Programm?");
9 scanf ("%d", &probe);
10 printf ("Dieses Programm hat %d Probleme\n", probe);
11
12 return 0;
13}
|
Letzte Änderung: 05.04.2002 | © Prof. Dr. Uwe Schmidt |