C++ 一定会经历的常见错误
C++ 一定会经历的常见错误
C++ 一定会经历的常见错误
C++中需要掌握的只有int(整型)float (浮点)char (字符),其他的可自行百度后学习,但是基本上用不到 int float char 这三种类型,换成说人话的解释就是: ...
#include <iostream>using namespace std;int main(){ cout << "Hello, world!...
#include<iostream> using namespace std; int main() { cout << "The size of int is&nb...
#include<iostream> using namespace std; int sum(int a,int b);//函数声明 int main() { cout <<&nb...
#include<iostream> using namespace std; void addarr(int *k,int len); //文中形如sizeof(x)/sizeof(x[0]) 是用数组占用空...