Explain the priority queues?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print %d ?
how to do in place reversal of a linked list(singly or doubly)?
Does c have circular shift operators?
What are reserved words with a programming language?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
what is used instead of pointers in java than c?
What is volatile c?
When can you use a pointer with a function?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
Is file a keyword in c?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }