Algorithms And Programming #9

81. What is the difference between "malloc" and "calloc"?

82. struct n {int data; struct n* next} node;
node *c, *t;
c->data = 10;
t->next = null;
*c = *t;
What is the effect of the last statement?


BACk

No comments:

Post a Comment