Name:
Anonymous
2006-03-20 20:42
"Computer Science is no more about computers than Astronomy is about telescopes" - Dijkstra
Name:
Anonymous
2006-03-31 1:30
>>memset(s, '\0', BUFSIZE - 1); /*Blank string*/
>>s[BUFSIZE - 1] = 0; /*Final zero*/
why in the world would one not just use
memset(s, '\0', BUFSIZE);
?