**Autonomous driving tech./*C++

[C++] 배열 예시 코드

2wnswoo 2024. 9. 23. 18:07

#include <iostream>

using namespace std;

int main()
{	
	int nArray[5] = { 10,20,30,40,50 };

	cout << &nArray[0] << endl;   // 9와 10은 동일한 출력값
	cout << nArray << endl;  // 배열의 첫번재 원소의 주소는 배열의 이름과 같음

	cout << nArray[0] << endl; // 12와 13은 동일한 출력값
	cout << *nArray << endl;

	cout << nArray[2] << endl;   // 15와 16은 동일한 출력값
	cout << *(nArray + 2) << endl;

	return 0;
}

결과값