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 |
Write a program that his output 1 12 123
Write a C program to print 1 2 3 ... 100 without using loops?
print 1-50 with two loop & two print Statement
HOW DO YOU HANDLE EXCEPTIONS IN C?
Difference between pass by reference and pass by value?
What does a pointer variable always consist of?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
program to find the roots of a quardratic equation
Can a pointer point to null?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
What will be the output of x++ + ++x?