|
Related Questions |
View Answer |
|
How would you qsort() function to sort an array of structures?
|
View Answer
|
|
How can you access the static member of a class?
|
View Answer
|
|
When should we not use Quick sort as a sorting technique?
|
View Answer
|
|
What is a C-preprocessor?
|
View Answer
|
|
How do you sort names using circular linked list in c like sorting names after every insertion?
|
View Answer
|
|
What is the difference between structure and union?
|
View Answer
|
|
Can we use functions within a structure?
|
View Answer
|
|
What use of structure and union?
|
View Answer
|
|
How do display the list in single linked list form last to first?
|
View Answer
|
|
What is the stack?
|
View Answer
|
|
What is Preprocessor?
|
View Answer
|
|
How to perform matrix multiplication using Double linked lists?
|
View Answer
|
|
How to convert Stack in to Queue and v varsa ? c with data structure.
|
View Answer
|
|
struct Foo { char *pName; }; main() { struct Foo *obj = malloc(sizeof(struct Foo)); clrscr(); strcpy(obj->pName,"Your Name"); printf("%s", obj->pName); }
|
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
|