can anyone please tell me the syntax of using "farmalloc"
pointer to a structure.
i would be thankful
satti charvak
Printable View
can anyone please tell me the syntax of using "farmalloc"
pointer to a structure.
i would be thankful
satti charvak
Turbo C:
Code:main(){
struct a{
long b;
};
struct a *b;
b = (struct a *) farmalloc(sizeof(struct a) );
}