explain what is fifo?
No Answer is Posted For this Question
Be the First to Post Answer
how to sort two array of characters and make a new array of characters.
What is the difference function call by value & function call by reference?
Why do we use header files in c?
what is pointer ? what is the use of pointer?
Explain how can you restore a redirected standard stream?
What is the difference between exit() and _exit() function in c?
What are the Advantages of using macro
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is an auto keyword in c?
What is a program flowchart and explain how does it help in writing a program?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
Convert the following expression to postfix and prefix (A+B) * (D-C)