Answer Posted / hr@tgksolutions.com
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 |
Post New Answer View All Answers
How can you tell whether two strings are the same?
Is struct oop?
How can you invoke another program from within a C program?
Explain what are compound statements?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Describe the difference between = and == symbols in c programming?
Tell us two differences between new () and malloc ()?
How to declare a variable?
Write a program to swap two numbers without using third variable in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Can we use any name in place of argv and argc as command line arguments?
When a c file is executed there are many files that are automatically opened what are they files?
why wipro wase
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Apart from dennis ritchie who the other person who contributed in design of c language.