what was the easier way to refer to an array's first member other than array[0] ?
i forgot what the symbol was.
Name:
Anonymous2012-01-13 13:41
>>30
Subtle. Took me some time to realize the pointer is register. But you shouldn't need <string.h>, and I don't see why you didn't further reduce this the loop to
while(*c)
putchar(*c++);