Systemnahe Programmierung in Chome Systemnahe Programmierung in C: Prioritäten und Boolesche Ausdrücke Prof. Dr. Uwe Schmidt FH Wedel

Prioritäten und Boolesche Ausdrücke

weiter

weiter

Gemeine Fehler

Beispiel
void f() {
  char * line = ...;
  int count;
 
  ...
  while ( ...
          &&
         (count = getline(&line, ..., stdin) > 0)
        ) {
    char * res = malloc(count + 1);
 
    strcpy(resline);
    ...
  }
  ...
}
?
Was ist hier falsch?

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