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
Do pointers take up memory?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
Program to find larger of the two numbers without using if-else,while,for,switch
What are the functions to open and close file in c language?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What are header files? What are their uses?
how to implement stack work as a queue?
What is the meaning of int *x[]();?
What is c standard library?
what is the function of void main()?