摘要:
转自:https://blog.csdn.net/weixin_39640298/article/details/84900326 原作者:YoungYangD 概述 C/C++语言之所以强大,以及其自由性,很大部分体现在其灵活的指针运用上。因此,说指针是C/C++语言的灵魂一点都不为过。 有好的一 阅读全文
摘要:
#include <iostream> #include <string> #include "mult.h"//引用函数 using namespace std; /* 1.定义函数 return_type function_name( parameter list ) { body of the 阅读全文
摘要:
#include <iostream> using namespace std; int main() { //1.定义数组 /*int args[5] = { 1,2,3}; //数组不够5个元素,将被0填充 for ( int i =0 ; i< 5 ; i++) { cout << args[ 阅读全文