Next:
Operators
Up:
Errors statically detected
Previous:
Function definitions and calls
Assignment
incompatible types in assignment, <type1> <> <type2>
when the assigned value is incorrect.
(incompatible types in assignment for i int
<>
char*)
incompatible types in array assignment, <type1> <> <type2>
illegal assignment <varname> = ..
when the variable (local or global) is an array.
illegal assignment <varname>++
or
illegal assignment <varname>-/-
when the variable (local or global) is an array.
illegal assignment
when you attempt to assign a constant:
illegal assignment (*&array = ...)
and
illegal assignment (*(&array)++/-/-)
Lionel Fournigault
Wed Apr 30 10:44:37 MET DST 1997