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 |
How can you call a function, given its name as a string?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
c pgm count no of lines , blanks, tabs in a para(File concept)
How to write a code for reverse of string without using string functions?
What should malloc() do?
is it possible to create your own header files?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
User define function contain thier own address or not.