int main()
{
int i ,a[i];
i = 0;
a[i] = 10;
cout<< a[i] << endl;
return 0;
}
What will be output of this program?
Answers were Sorted based on User's Feedback
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
Mention the ways in which parameterized can be invoked.
What is the difference between map and hashmap in c++?
What are the vectors in c++?
How can you create a virtual copy constructor?
write a C++ programming using for loop: * * * * * * * * * *
What are features of c++?
What are stacks? Give an example where they are useful.
Are strings immutable in c++?
Define basic type of variable used for a different condition in C++?
Define a nested class.
Can class objects be passed as function arguments?