What is queue in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the significance of an algorithm to C programming?

0 Answers  


Why doesnt this code work?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

0 Answers  


Find greatest of two numbers using macro

4 Answers   Bosch, Siemens,






In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


Why is it that not all header files are declared in every C program?

0 Answers  


How can I discover how many arguments a function was actually called with?

0 Answers  


how to display 2-D array elements in spiral

2 Answers  


What is the significance of scope resolution operator?

0 Answers   Agilent, ZS Associates,


What is the difference between typedef struct and struct?

0 Answers  


write a program for odd numbers?

15 Answers  


Categories