Computer Science, asked by Anonymous, 1 year ago

I need an example for programming in C++ or Java. It is for 25 points .Hurry up!

Answers

Answered by Anonymous
1
#include
Void main()
{
Cout<< "hello world ";
}
Hope it helps u
Answered by himanshu32
1
Hi friend


int[] values = new int[ 10 ];
values[ 20 ] = 2; // error! You get an ArrayIndexOutOfBoundsException
In C or C++
,
the same operation results in...well, it just writes the data there.


int values[ 10 ];
values[ 20 ] = 2;
Similar questions