Answers for "No Index Out of Bound Checking in C++"

C++
0

No Index Out of Bound Checking in C++

#include <iostream>
using namespace std;

int main()
{
	int arr[5];

	cout << arr[2] << " ";
	cout << arr[-5] << " ";

	return 0;
}
Posted by: Guest on May-05-2022

Code answers related to "No Index Out of Bound Checking in C++"

Browse Popular Code Answers by Language