InterviewSolution
Saved Bookmarks
| 1. |
Assume that an integer takes 4 bytes and there is no alignment in following classes, predict the output.#include<iostream>using namespace std;class base {int arr[10];};class b1: public base { };class b2: public base { };class derived: public b1, public b2 {};int main(void){cout << sizeof(derived);return 0;}(A) 40(B) 80(C) 0(D) 4 |
| Answer» None | |