#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];
}
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
2. Give the different notations for the class.\
what is abstract class ? when is used in real time ? give a exp
What are two types of polymorphism?
What are main features of oop?
can inline function declare in private part of class?
what is polymorphism?
What do you mean by pure virtual functions?
What do you mean by stack program? Get me an example stack program?
How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)
what is the difference between containership and inheritence?
What are the three main types of variables?