ok, I am trying to learn how to program for the ppc and I could use some help. I have been reading through some tutorials on the net on programing. Ok, here is my question.
What is the exact purpose of calloc()
and
In this case, what does the following mean...
struct Misc
{
int x;
Misc y;
}*x;
void somefunction()
{
calloc(1, x);
}
(I think that is the correct syntax, but I am not positive. Oh wise programmers, please help).