What is the difference between struct and union in C?
A struct is a block of memory that stores several data objects, where those objects don't overlap. A union is a block of memory that stores several data objects, but has only storage for the largest of these, and thus can only store one of the data objects at any one time.
| Is This Answer Correct ? | 0 Yes | 0 No |
void main() { int i=5; printf("%d",i+++++i); }
Can 'this' pointer by used in the constructor?
discuss the steps needed to get a program from source code to executable in a system?
How can we allocate array or structure bigger than 64kb?
What are different types of operators?
What is meant by type casting?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is array of structure in c?
sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.
Explain how can type-insensitive macros be created?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }