What is a Deque?
Answers were Sorted based on User's Feedback
Answer / glibwaresoftsolutions
A double-ended queue is called a deque.
You can add or remove components from either end of this structure.
| Is This Answer Correct ? | 0 Yes | 0 No |
A double-ended queue is called a deque.
You can add or remove components from either end of this structure.
| Is This Answer Correct ? | 0 Yes | 0 No |
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What are header files and explain what are its uses in c programming?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Which is the best sort method for library management?
what is disadvantage of pointer in C
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
what are far pointers?
convert 12345 to 54321 withoutusing strig
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
What is difference between %d and %i in c?