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 / ravinder kumar(omnietysolution
Error in program
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
What do you understand by zombie objects in c++?
What are c++ storage classes?
What are separators in c++?
Please explain class & object in c++?
When can I use a forward declaration?
What is the role of static keyword for a class member variable?
What is a map in c++?
What is the best free c++ compiler for windows?
What are the data types in c++?
which operator is used for performing an exponential operation a) > b) ^ c) none
What is the benefit of learning c++?
Describe new operator and delete operator?
What are the advantages of prototyping?
What are the benefits of operator overloading?