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 / ashponni
Is the memory for double is assigned to int and char?
| Is This Answer Correct ? | 3 Yes | 8 No |
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
how to write palindrome program?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
What is return type in c?
all c language question
can we write a program in c for printf and scanf without using header file stdio.h
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
Why & is used in scanf in c?
What is putchar() function?
1 What is a Data Structure?
How do you define a function?
Is null equal to 0 in sql?