Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#include <iostream>
using namespace std;
int main() {
int a = 3;
int c[5][5];
for (int x=0;x<5;x++) {
for (int y=0;y<5;y++) {
c[x][y] = x*y;
}
}
cout << c[a][2];
}

Answer Posted / pratiksha21

answer is 6

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can destructor be overloaded?

979


What is abstraction in oops?

986


What is debug class?what is trace class? What differences are between them? With examples.

2136


What is the real time example of inheritance?

1082


Give two or more real cenario of virtual function and vertual object

2289


Can we create object of interface?

1068


What is methods in oop?

929


program for insertion ,deletion,sorting in double link list

2641


What is class and object with example?

1060


What is polymorphism explain its types?

1103


Explain the concepts involved in Object Oriented programming.

1146


What is the difference between inheritance and polymorphism?

1051


What is an example of genetic polymorphism?

1119


How to hide the base class functionality in Inheritance?

1093


What is constructor overloading in oop?

1080