When should a far pointer be used?
No Answer is Posted For this Question
Be the First to Post Answer
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
what is the diference between pointer to the function and function to the pointer?
Why array starts with index 0
what is the difference b/w compiler and debugger?
Explain what is the difference between far and near ?
write a program in C to swap two variables
What is C language Terminator?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
Explain what is the benefit of using an enum rather than a #define constant?
What is the difference between functions getch() and getche()?
What is a segmentation fault?
How many bytes is a struct in c?