Systemnahe Programmierung in Chome Systemnahe Programmierung in C: t5.c Prof. Dr. Uwe Schmidt FH Wedel

t5.c

weiter

weiter

t5.c

   1#include <stdio.h>
   2
   3int
   4main (int argcchar *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}
weiter

weiter

cc -Wall -c t5.c

weiter

Letzte Änderung: 05.04.2002
© Prof. Dr. Uwe Schmidt
Prof. Dr. Uwe Schmidt FH Wedel