Systemnahe Programmierung in C: Prioritäten und Boolesche Ausdrücke
Prioritäten und Boolesche Ausdrücke
Gemeine
Fehler
Beispiel
void
f
(
)
{
char
*
line
=
...;
int
count
;
...
while
(
...
&&
(
count
=
getline
(
&
line
, ...,
stdin
)
>
0
)
)
{
char
*
res
=
malloc
(
count
+
1
)
;
strcpy
(
res
,
line
)
;
...
}
...
}
?
Was ist hier falsch?
Letzte Änderung: 09.11.2010
©
Prof. Dr. Uwe Schmidt