B
bitshadow
True, but doesn't C allow the int type to change up to long long - ifKeith said:It's also possible that the expression 10*10000 could overflow (it's
of type int, which needn't be able to represent values greater than
32767).
the compiler supports it - to accomadate the int?
The malloc() is similar to the array declaration in that it allocates
(or attempts to allocate) the same amount of space, and the variable
name is spelled the same way. It's very different in that
char buf[10[[10000];
declares buf as an array object, whereas
buf = malloc(whatever);
implies that buf is a pointer. C FAQ, section 6.
thanks, i knew that . as for the FAQ you mean section 2? cause unless
i'm mistaken section 6 deals with the preprocessor.
also thanks for the pointers - no pun intended - on how to use google
groups. its more than annoying actually.