Write a program to implement queue.
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of keyword volatile??
How to print India by nested loop? I IN IND INDI INDIA
What is n in c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
What is static and auto variables in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
what are brk, sbrk?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
List the difference between a "copy constructor" and a "assignment operator"?
What is sorting in c plus plus?