C++ 用引用的方式向函數傳遞數組

#include <iostream> using namespace std; int a[10] = { 10,20 }; void GetCharArr(char (&ac)[20]) {         sprintf_s(ac, "ABABXX%d", a[0]); } int main() {     char str1[20];          GetCharArr(str1);
相關文章
相關標籤/搜索