1

In c language there is a concept of far pointer, but still it is not applicable using gcc compiler. Is there any way to implement far pointer in c using gcc compiler ? If there is any misconception related to far pointer please make it clear to me......

Girjesh Shakya
  • 21
  • 1
  • 1
  • 4

1 Answers1

5

Far and Near pointers are applicable in 16-bit x86 architectures. So you may find the concept applicable in ancient compilers like Turbo C which are written for old l6-bit architecture but not in the modern compilers like GCC.

What is the difference between far pointers and near pointers? explains in more detail with regards to what they are.

Community
  • 1
  • 1
toddlermenot
  • 1,588
  • 2
  • 17
  • 33