B
bpascal123
Hi
Can someone help me out remember basic pointer notation?
p points to a type int data
int *pi;
char *pc;
pc points to a type char data
Is there any difference with this notation?
char* pc;
Is pc is still pointing to type char data above?
I understand notation '*' operator means pointer. So if it's following the variable type declaration like int* or char*, is it a different meaning as if there is a space like int *var ?
bpascal
Can someone help me out remember basic pointer notation?
p points to a type int data
int *pi;
char *pc;
pc points to a type char data
Is there any difference with this notation?
char* pc;
Is pc is still pointing to type char data above?
I understand notation '*' operator means pointer. So if it's following the variable type declaration like int* or char*, is it a different meaning as if there is a space like int *var ?
bpascal