What are the different pointer models in c?

Answers were Sorted based on User's Feedback



What are the different pointer models in c?..

Answer / sathish kumar

Hi All,

This is sathish. Upto my knowledge you have three types of
pointers in C. They are

1) Near
2) Far
3) Huge

Thanks & Regards

Is This Answer Correct ?    0 Yes 0 No

What are the different pointer models in c?..

Answer / gg

Dear Satish...
Can U explain in brief... please...

Thank You

Is This Answer Correct ?    0 Yes 0 No

What are the different pointer models in c?..

Answer / ashwin kumar

According to size of program in code area,data area and
stack area there are six type of memory model:
1. Tiny
2. Small (default)
3. Medium
4. Compact
5. Large
6. Huge

Note: - to change memory model (in turbo c) go to
Option->compiler->code generation.

Is This Answer Correct ?    0 Yes 0 No

What are the different pointer models in c?..

Answer / sedhurammv

NULL Pointer
Dangling Pointer
Generic Pointers
Wild Pointer
Complex Pointers
Near Pointer
Far Pointer
Huge Pointers

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is the use of c program?

4 Answers   Synergy, Web Synergies,


Why is c still so popular?

0 Answers  


Write a program to implement queue.

0 Answers   Aricent,


What does sizeof return c?

0 Answers  


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  






what is data structure?

5 Answers   CBSE,


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

0 Answers  


Which control loop is recommended if you have to execute set of statements for fixed number of times?

0 Answers  


Can a variable be both constant and volatile?

0 Answers  


what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"

4 Answers  


write a C code to reverse a string using a recursive function, without swapping or using an extra memory.

9 Answers   Motorola, TCS, Wipro,


What type is sizeof?

0 Answers  


Categories