/* Typüberprüfung in C */
/* Datei: Modulo.c */

int main (void) 
{
float a,b,c;
a = 7.8;
b = 9.0;
c = a % b;   /* FEHLER */
return 9;
}
