iOS
-
C++递增指针
#include <iostream> using namespace std; const int MAX = 3; int main () { int var[MA…
-
C++ NULL指针
#include <iostream> using namespace std; int main () { int *ptr = NULL; cout <<…
-
C++使用指针
#include <iostream> using namespace std; int main () { int var = 20; // actual varia…
-
C++指针
// #include <iostream> using namespace std; int main () { int var1; char var2[10]; c…
-
C++ String类
#include <iostream> #include <string> using namespace std; int main () { strin…
-
C++字符串函数
#include <iostream> #include <cstring> using namespace std; int main () { char…
-
C++字符串
#include <iostream> using namespace std; int main () { char greeting[6] = {'H…
-
C++从函数返回数组
#include <iostream> #include <ctime> using namespace std; // function to gener…
-
C++将数组传递给函数
#include <iostream> using namespace std; double getAverage(int arr[], int size) { in…
-
C++指向数组的指针
#include <iostream> using namespace std; int main () { // an array with 5 elements. …