楼主不要瞎琢磨了,没有区别,编译器的差错程序更本不关系这些问题;我在VC++6.0上运行了一下系统不warring 也不erro。
例如:
// sdf.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int main(int argc, char* argv[])
{
int * a;//改成int *a;或者是int *a;或者是int
*
a;结果都一样系统压根也不关心你是如何写的;在语法上几种写法没有区别。
int b=5;
a=&b;
printf("%d\n",*a);
printf("Hello World!\n");
return 0;
}