|
Related Questions |
View Answer |
|
union u { union u { int i; int j; }a[10]; int b[10]; }u; main() { printf("n%d", sizeof(u)); printf(" %d", sizeof(u.a)); // printf("%d", sizeof(u.a[4].i)); }
|
View Answer
|
|
What is use of macro arguments in c? what is major difference between normal macro definition and macro arguments.
|
View Answer
|
|
How can you calculate number of nodes in a circular Linked List?
|
View Answer
|
|
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
|
View Answer
|
|
c program for delete a node from linked list
|
View Answer
|
|
How to break cycle in circular single link list?
|
View Answer
|
|
Whats is structure padding?Say a given structure Struct{ int a; char c; float d; } the size of structure is 7 here. But structure padding is done what will be the size of the struct?Will it change and how?How to avoid this?is it necessary?
|
View Answer
|
|
What is the implicit name of the parameter that gets passed into the class set method?
|
View Answer
|
|
Why cannot you specify the accessibility modifier for methods inside the interface?
|
View Answer
|
|
When is a switch statement better than multiple if statements?
|
View Answer
|
|
What is the easiest sorting method to use?
|
View Answer
|
|
What is the quickest sorting method to use?
|
View Answer
|
|
How can I sort things that are too large to bring into memory?
|
View Answer
|
|
What is the easiest searching method to use?
|
View Answer
|
|
What is the quickest searching method to use?
|
View Answer
|
|
What is hashing?
|
View Answer
|
|
How can I sort a linked list?
|
View Answer
|
|
How can I search for data in a linked list?
|
View Answer
|