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
Explain bubble sorting.
What is the basic difference between C and C++?
What is the difference between an external iterator and an internal iterator?
What is prototype for that c string function?
What is a storage class? Mention the storage classes in c++.
Explain what data encapsulation is in c++?
What is istream c++?
Why do we learn c++?
Explain virtual class?
What is a .h file c++?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What is a static element?
Write a program using display() function which takes two arguments.
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
Explain the virtual inheritance in c++.