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
What is flag in computer?
What are the extraction and insertion operators in c++? Explain with examples.
What is bubble sort c++?
What is the difference between ++ count and count ++?
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
Explain public, protected, private in c++?
What is pair in c++?
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
What character terminates all character array strings a) b) . c) END
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What is guard code in c++?
Write about the members that a derived class can add?
If dog is a friend of boy, is boy a friend of dog?
Is c++ pass by reference or value?
What is switch case in c++ syntax?