Wednesday, 11 September 2013

How can i write this code? if(strncmp(wtemp, (temp1->parola), (PAROLA))== 0)

How can i write this code? if(strncmp(wtemp, (temp1->parola), (PAROLA))== 0)

char *wtemp;
struct word *temp1;
//PAROLA is a int
if(strncmp(wtemp, (temp1->parola), (PAROLA))== 0) //this!!
How can i write this code without the function strncmp?

No comments:

Post a Comment