int main()
{
int i ,a[i];
i = 0;
a[i] = 10;
cout<< a[i] << endl;
return 0;
}
What will be output of this program?
Answer Posted / blacky
Compiler will Core Dump
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How the delete operator differs from the delete[]operator?
What is array give example?
What are destructors?
What is virtual destructor? What is its use?
What is iostream in c++ used for?
What is enum class in c++?
What is fixed in c++?
Do you know the problem with overriding functions?
Is c++ map a hash table?
Which one between if-else and switch is more efficient?
What is the full name of logo?
What are the advantages of c++ over c?
What is the use of default constructor?
which of the following is not an secondary constant a) array b) real c) union
What is #include iostream?