int myArray[5] = {1, 2, 3, 4, 5}; size_t arraySize = sizeof(myArray) / sizeof(int); std::cout << "C-style array size: " << arraySize ...
確定! 回上一頁