Jul 17 2009 02:20 PM 2751 6 Empty Class Size MURALIR What is the size of an empty class? deep Oct 13th, 2011 What is the output for the below example? Code#include iostream using namespace std; class A { }; int main() { coutsizeof(A)endl; system(pause); return 0; }? cpfeed Profile Answers by cpfeed Questions by cpfeed Oct 29th, 2009 Class A{}most of time sizeof(A) = 1, however, it is a small integer regarding to the complier. Answer Question Select Best Answer
Jul 17 2009 02:20 PM 2751 6 Empty Class Size MURALIR What is the size of an empty class? deep Oct 13th, 2011 What is the output for the below example? Code#include iostream using namespace std; class A { }; int main() { coutsizeof(A)endl; system(pause); return 0; }? cpfeed Profile Answers by cpfeed Questions by cpfeed Oct 29th, 2009 Class A{}most of time sizeof(A) = 1, however, it is a small integer regarding to the complier. Answer Question Select Best Answer
deep Oct 13th, 2011 What is the output for the below example? Code#include iostream using namespace std; class A { }; int main() { coutsizeof(A)endl; system(pause); return 0; }?
cpfeed Profile Answers by cpfeed Questions by cpfeed Oct 29th, 2009 Class A{}most of time sizeof(A) = 1, however, it is a small integer regarding to the complier.