What is FIFO?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
First In First Out is what FIFO stands for.
Data can be accessed, stored, and retrieved using this method.
The first data to be extracted is the one that was initially stored.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
First In First Out is what FIFO stands for.
Data can be accessed, stored, and retrieved using this method.
The first data to be extracted is the one that was initially stored.
| Is This Answer Correct ? | 0 Yes | 0 No |
First In First Out is what FIFO stands for.
Data can be accessed, stored, and retrieved using this method.
The first data to be extracted is the one that was initially stored.
| Is This Answer Correct ? | 0 Yes | 0 No |
Difference between null pointer and dangling pointer?
What is character set?
What is a far pointer?What is the utility?
How is pointer initialized in c?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
What is the OOPs concept?
What is the difference between constant pointer and pointer to a constant. Give examples.
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
What is hashing in c?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
How to add two numbers without using semicolon at runtime