#include "stdafx.h"
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{ char str[]="GE";
char *str2 = str;
printf("%d,%d",sizeof(str),sizeof(str2));

system("pause"); return 0;
}
//输出3,4