May 17, 2010 at 3:55am
You did not allocate in using malloc(), so no.
May 17, 2010 at 9:13am
i have a question in line 10: pmystruct temp=(pmystruct)malloc(sizeof(pmystruct*)) ;
shouldn't you use sizeof(pmystruct);
Last edited on May 17, 2010 at 9:13am
May 17, 2010 at 10:14am
shouldnt u use pmystruct temp = (pmystruct)malloc(sizeof(mystruct));
?
May 17, 2010 at 10:19am
And shoulnd't you first alocate memory to pb->pchr before assigning a value to it?
May 17, 2010 at 11:00am
There's so many things wrong here, it's hard to know where to start. Just go back to the beginning of your book's chapter on pointers and start over.