C++ 一定会经历的常见错误
C++ 一定会经历的常见错误
C++ 一定会经历的常见错误
c++的目标之一是让使用类对象就像使用标准类型一样, 也就是说,常规的初始化语法不适用于类型Stock: int year=2001; struct thing { char *pn; int m; }; thing amabob={"w...
#include<iostream> using namespace std; int main() { cout << "The size of int is&nb...
#include<iostream> void print(); int main() { char a=0; for(a=0;a<20;a++) print(); return 0; } v...
#include<iostream> using namespace std; struct books{ char name[10]; int num; float price; }book; int&nb...