Answer Posted / divyachinnamaru
Eg :
class A // empty class
{
};
int main()
{
cout<<"size of class is "<<sizeof(A)<<endl;
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between ++ count and count ++?
Explain queue. How it can be implemented?
What new()is different from malloc()?
How would you use the functions sin(), pow(), sqrt()?
How does com provide language transparency?
What is the main use of c++?
What is the difference between a template and a macro?
What is the best it certification?
Please explain class & object in c++?
What is boyce codd normal form in c++?
Write a short code using c++ to print out all odd number from 1 to 100 using a for loop
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Explain function overloading and operator overloading.
Differentiate between C and C++.
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples