Name: Anonymous 2009-06-15 12:13
Which is the better way to write them?
or
char* timmy = "hello\n";or
char *timmy = "hello\n";
char* timmy = "hello\n";
char *timmy = "hello\n";
int i, j, *ip;
int* ip, i;int, i, j, and the thing that is behind the pointer *ip; With the second option, you imply that, sure, ip is of the type of pointer to int, but so is i.grabs *dick;