Name:
Anonymous
2006-03-20 20:42
"Computer Science is no more about computers than Astronomy is about telescopes" - Dijkstra
Name:
Anonymous
2006-03-28 6:32
C code from uni graduates:
char *s; /*Create string*/
s = malloc(200); /*Fixed-length string*/
memset(s, '\0', 199); /*Blank string*/
s[199] = 0; /*Final zero*/
strcpy(s, "Hello world!"); /*Put message on string*/
printf("%s\n", s); /*Print message on screen*/