What happens when you attempt to compile and run the following code?
#include
using namespace std;
class A {
public :
void print() {
cout << "A ";
}
};
class B {
public :
void print() {
cout << "B ";
}
};
int main() {
B sc[2];
B *bc = (B*)sc;
for (int i=0; i<2;i++)
(bc++)->print();
return 0;
}
Freida
9 months agoGlennis
9 months agoViva
9 months agoTatum
9 months agoCrista
9 months agoShenika
9 months agoPamela
10 months agoCrista
11 months agoShenika
11 months agoLuann
11 months agoGladys
12 months agoShawnna
12 months agoKatie
12 months agoVicky
12 months agoBelen
10 months agoLuther
11 months agoWayne
12 months ago