What is difference between far and near pointers?
No Answer is Posted For this Question
Be the First to Post Answer
#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); }
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Why do we use return in c?
What is a null string in c?
How can a number be converted to a string?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
Why do we use null pointer?
What are 'near' and 'far' pointers?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
What is an anonymous union and where to apply that ?
How are strings stored in c?
How to set a variable in the environment list?