Forum: C Dec 23rd, 2008 |
| Replies: 7 Views: 741 //... memcpy...
//... use memcmp(...,...,...);
//...
//...to compare two string :
int s_compare(const char *str1, const char *str2)
{
if (strlen(str1) != strlen(str2))
return 1;... |
Forum: C Dec 22nd, 2008 |
| Replies: 9 Views: 751 char T[25];
fgets( T,25, stdin);
work fine with my cmplr... |