Answer Posted / chaitanya
pointers are two types.near and far.
if code we are writing is so large and there is necessity
to refer an address in other memory segment we have to use
far pointer.within in the range of 64Kb we can use new
pointer
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Can a function argument have default value?
Combinations of fibanocci prime series
What is static and auto variables in c?
How can type-insensitive macros be created?
Is null a keyword in c?
Is c object oriented?
What is file in c language?
what are enumerations in C
What is the benefit of using const for declaring constants?
Is a pointer a kind of array?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between fread buffer() and fwrite buffer()?
What is the use of #define preprocessor in c?
Difference between pass by reference and pass by value?
Why is it that not all header files are declared in every C program?