Hi Leute,
ich habe mir den oben benanntzen Guide mal zu Gemüte geführt und ein wenig rumprobiert.
-- schnipp - (Ich bekomm's nicht in ein Code-Tag kopiert)
Don’t assume knowledge of pointers.
Beginning users of C find this the biggest roadblock,
and get very confused by & and , so whenever you can
avoid having them hanging out in the API, do so.
One way is to pass by reference using array notation rather than * notation, for example.
void printArray( char array);
can be replaced by
void printArray(char[] array);
--- schnipp ---
Das getestet mit :
void testxy(char[] x)
{
};
gibt :
util.h:42:20: error: expected ',' or '...' before 'x'
void testxy(char[] x);