Hello All ,
is there difference between int* p1 and int *p1 .


Code:
 :
           int main()
{
	int x =3;
	int* p1;
	int *p2;
	p1 = &x;

	p2 = &x;
	printf("%d\n",*p1);
                printf("%d\n",*p2);
	return 0;
}
Code doesn't have any problem.
--------------------------------------------------------

whether really it makes any difference with below ?
int *p1;
int* p1;