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
Toggle nth bit in a given integer - num
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
What are enums in c?
What is an lvalue in c?
How pointers are declared?
what are bps & baud rates? differentiate these two?
What is the difference between %d and %*d in C
write a program whose output will be- 1 12 123 1234
Why isnt any of this standardized in c?
write a program to delete an item from a particular location of an linear array?
Which header file is used for clrscr?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?