Diff: between this 2 classes in terms of memory
class A
{
int i;
char c;
double d;
};
class A
{
double d;
int i;
char c;
};
How it is calculating?
Answer Posted / ashponni
Is the memory for double is assigned to int and char?
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
Explain union.
why programs in c are running with out #include
Why is c called c?
If you know then define #pragma?
Explain how can I make sure that my program is the only one accessing a file?
What are keywords c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What does int main () mean?
What does %d do in c?
What is sizeof int?
What is the importance of c in your views?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Is array name a pointer?
Differentiate call by value and call by reference?
Does free set pointer to null?