answersLogoWhite

0

How does a memory buffer function?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

it stores data until it can be processed

it discards excess data

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Function of a frame buffer in computers?

function of a frame buffer in computer?


Which segment of a memory or storage in which items are placed while waiting to be?

buffer


Secondary memory define?

Memory is something that is remembered. The Power of retaining something and recalling past experience like " he had a good memory when he was younger" In computer science Memory is the device which store the data in it for processing or for display. Memory is made of lots of buffer(buffer is 1 bit circuit).


What is memory explain?

Memory is something that is remembered. The Power of retaining something and recalling past experience like " he had a good memory when he was younger" In computer science Memory is the device which store the data in it for processing or for display. Memory is made of lots of buffer(buffer is 1 bit circuit).


How do you use a pointer?

A pointer is a reference to a location in memory that is a primitive type in C and other low-level languages. An example use would be if you wanted to store data at run-time, you would have to allocate memory using the malloc function, an you would access that memory area using a pointer Example (modified from http://www.cplusplus.com/reference/clibrary/cstdlib/malloc): #include <stdio.h> #include <stdlib.h> int main () { int i,n; char * buffer; // Declare a pointer to a char printf ("How long do you want the string? "); scanf ("%d", &i); // Get input from user and store in i // Allocate space for i+1 characters buffer = (char*) malloc ( sizeof( char[i+1] ) ); // buffer should now contains a pointer to this location if (buffer==NULL) exit (1); // Memory allocation failed, abort for (n=0; n<i; n++) buffer[n]=rand()%26+'a'; buffer[i]='\0'; printf ("Random string: %s\n",buffer); free (buffer); // Release allocated memory return 0; }


What car CD changer has the most memory buffer?

Dual CD Receiver HD/MP3/WMA/iPod/Bluetooth & iTunes Tagging has a great amount of memory buffer.


What is buffer index?

Buffer index typically refers to the position within a buffer or memory area where data is stored or processed. It can be used to keep track of the current location or offset within the buffer, allowing for efficient data manipulation and transfer. In networking or programming contexts, buffer index is commonly used when reading or writing data from/to memory buffers.


What is fflush?

The fflush() function writes any buffered data to the specified file stream. When you write data to a file (with a function such as fprintf()), it is actually placed in a memory buffer. The data is only actually written to the file when the buffer is full, the file stream is closed or when fflush() is called.


A buffer is an area of high speed memory that sits between the processor and the primary memory?

You should ask the question without the word "buffer" in the sentence. The correct statement would be; A Cache is an area of high speed memory that sits between the processor and the primary memory.


What is the function of printer memory?

what is function of printer memory


Is buffer is the part of the primary memory?

yes. its think time for your computer.


What are buffer registers?

A buffer register is the simplest kind of register; all it does is store a digital information temporarily. It holds the contents of the memory which are to be transferred from memory to other components. By acting as a buffer, it allows the central processor and memory units to operate independently without being affected by minor differences in operation. See the related link for more information.