On most computers additional memory that is accessed through an adapter of feature card along with a device driver program.
a) user memory
b) conventional memory
c) expandedmemory
d) area
No Answer is Posted For this Question
Be the First to Post Answer
What is malloc calloc and realloc in c?
Write a program to exchange two variaables without temp
What are the features of c languages?
How do you override a defined macro?
why should i select you?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What is the meaning of int *x[]();?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
What is storage class?
What is indirection? How many levels of pointers can you have?