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

Can i use Two or More Main Funtion in any C program.?

4 Answers  


What is getch c?

0 Answers  


What are different types of operators?

0 Answers  


where are auto variables stored? What are the characteristics of an auto variable?

0 Answers  


What are the rules for identifiers in c?

0 Answers  






Do you know the purpose of 'register' keyword?

0 Answers  


What is the use of pragma in embedded c?

0 Answers  


WHY DO WE USE A TERMINATOR IN C LANGUAGE?

2 Answers  


Can a file other than a .h file be included with #include?

0 Answers   Aspire, Infogain,


What does *p++ do? What does it point to?

0 Answers  


what is meant by c

9 Answers   INiTS,


what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }

3 Answers  


Categories