Name: Anonymous 2011-12-17 11:01
what was the easier way to refer to an array's first member other than array[0] ?
i forgot what the symbol was.
i forgot what the symbol was.
#include <stdio.h>
#include <string.h>
char array[] = "HOW AWESOME?!";
int main() {
register char *c = array;
while( *c != 0x00 ) {
putchar( *c );
c++;
}
putchar('\n');
return 0;
}