Possible Duplicate:
In C, why is the asterisk before the variable name, rather than after the type?
Declaring pointers; asterisk on the left or right of the space between the type and name?
I have been using pointers for a while and used to declare pointers like
int *x;
But noticed thru some code that, the * seems to be after data type in some cases, like
void* setValue(){
/* */
}
What's the difference and why it's used like that
int,*,x,;. Regardless of whether it is writtenint*x;,int *x;,int* x;orint * x;(or evenint/*obfuscating*/*/*comment*/x;---comments count as white space). – James Kanze Jul 17 '12 at 10:32