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 / kamal
10
| Is This Answer Correct ? | 30 Yes | 9 No |
Post New Answer View All Answers
How java is different from c and c++?
How are Structure passing and returning implemented by the compiler?
what is VOID?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
How did c++ get its name?
What is a manipulator in c++?
Why is c++ not purely object oriented?
What are destructors?
What are the basics of local (auto) objects?
Explain the concept of friend function in c++?
What are manipulators in c++ with example?
What does it mean to declare a member variable as static?
what is multi-threading in C++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is the difference between reference and pointer?