Tag Archives: c++
Byte packing !
Hello friends , I was studing C++ late in night and I faced a little weird situation . I saw a code as follows: class check { int i; float j; char k; }; int main() { cout<<sizeof(check)<<endl; check c; … Continue reading
Filed under Tech-Bowl
Conversion operator
Hello squids , Many of you ,who are studing/studied C++ , may be aware of conversion operator. In short it may be described as : A conversion operator can be thought of as a user-defined typecasting operator; it converts its … Continue reading
Filed under Tech-Bowl
