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
When do we run a shell in the unix system?
What is microsoft c++ redistributable 2013?
List the advantages of inheritance.
Explain shallow copy?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
what are the events occur in intr activated on interrupt vector table
What does namespace mean in c++?
Explain the term memory alignment?
What are c++ files?
How can virtual functions in c++ be implemented?
What are disadvantages of pointers?
What is #include iostream in c++?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
What is endl?
Should the member functions which are made public in the base class be hidden?