标签:getchar main global class eof 复制 namespace stream ace
#include <iostream> using namespace std; int main( ) { char s[100]="GoldenGlobalView"; char d[20]; memcpy(d,s+12,4);//从第13个字符(V)开始复制,连续复制4个字符(View) d[4]=‘\0‘;//memcpy(d,s+12*sizeof(char),4*sizeof(char));也可 printf("%s",d); getchar(); //system("pause"); return 0; }
2.printf("%d %d %d\n", count++, count++, count++);为什么输出结果不一样?
#include <iostream> using namespace std; int main( ) { int count = 0; printf("%d %d %d\n", count++, count++, count++); //从右往左运算 //++count本身的值是+1以后的,而count++本身的值是+1以前的 //system("pause"); return 0; }
标签:getchar main global class eof 复制 namespace stream ace
原文地址:http://www.cnblogs.com/6666junyiliu/p/6044059.html