Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

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;
}
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #No #Index #Out #Bound #Checking
ADD COMMENT
Topic
Name
9+2 =