What is object and example?
No Answer is Posted For this Question
Be the First to Post Answer
all about pointers
#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]; }
difference between structure and union.
what is the diffrence between c# and c++
how to find the largest of given numbers in an array
what is pointers
Why is abstraction used?
can you give real time example for polymarphism
Write a c++ program to display pass and fail for three student using static member function
What is polymorphism and why is it important?
how can we design a magic square in c++?or suggest me the basic idea of it.
what is the use of template classes in c++