摘要:
int _tmain(int argc, _TCHAR* argv[]){ int i; for (i = 0; i<argc; i++) cout<<argv[i]<<endl; getchar(); return 0;} 1.1.在多字节的环境中,通过控制台启动exe程序,依次输出:exe的全路 阅读全文
摘要:
Enter password: ******Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 11Server version: 5.1.55-community MySQL Com 阅读全文
摘要:
Enter password: ******Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 7Server version: 5.1.55-community MySQL Comm 阅读全文
摘要:
code: int a = 5; int *p = &a; printf("%d \n", p); printf("%d", *p); result: printf("%d \n", p)输出的是a的地址printf("%d", *p)输出的是a值 code: int a = 5; int *p = 阅读全文