Sail E0 Webinar
Question


What is the output of this program?


1.
#include
2.
#include
3.
using namespace std;
4.
int main ()
5.
{
6.
try
7.
{
8.
int* myarray = new int[1000];
9.
cout
Options:
A .  allocated
B .  Standard exception
C .  Depends on the memory
D .  error
Answer: Option C

In this program, We are allocating the memory for array. If it is allocated means, no exception 

will arise and if there is no size in memory means, Exception will arise.
Output:
$ g++ excep3.cpp
$ a.out
allocated



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers