Explain 'far' and 'near' pointers in c.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How will you allocate memory to double a pointer?

1 Answers  


to find the program of matrix multiplication using arrays

6 Answers   Bhel,


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


What is c language used for?

0 Answers  


Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child

10 Answers   IBM, Infosys,






6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


What is a stream in c programming?

0 Answers  


What is Memory leakage ?

2 Answers   HCL,


What are the commands should be given before weiting C Program i.e, Cd.. like

4 Answers   IBM, Infonet, Satyam, Tech Mahindra,


1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output

2 Answers  


What does c mean before a date?

0 Answers  


how to execute with out main in cprogram

15 Answers   Infosys,


Categories