skip to main
|
skip to sidebar
Home
indiangovernemntjob
CuesShop.com
ALL Online shop
Home
C
C++
Java
Data Structure
Html
Dhtml
xml
Software
Office
Php
Codeigniter
Drupal7
Wordpress
Android
Oracle
Child Category 3
Child Category 4
Embedded System
Javascript
Ajax
Codeignator
Mathematics
Travel
Photography
Sunday, 24 March 2013
What Is Huge Pointer
05:00
tetst
No comments
Huge Pointer
The
Pointer
which can pointer total 16 segment of memory is called Huge pointer.
the size of the huge pointer is 4bytes ie 32 bits.
Example:
void main()
{
int*p;
int near *np;
int far *fp;
int huge *hp;
printf("\n %d %d %d %d ", sizeof(p),sizeof(np),sizeof(fp),sizeof(hp));
}
Output:- 2 2 4 4
Posted in:
C faq
Newer Post
Older Post
Home
0 comments:
Post a Comment
Subscribe to our RSS Feed
Follow Us on Twitter
Be Our Fan on Facebook
Popular
Tags
Blog Archives
Popular Posts
What does request_mem_region() actually do and when it is needed?
I'm studying on writing embedded linux driver, and decided to fire a few GPIOs to make sure I understand the book (LDD3, chap9.4.1) co...
What Is #Progma Directive?
Progma is implementation specific directive that is each progma directive has different implementation rule and use. There are the many type...
proc_create() example for kernel module
Can someone give me proc_create example. Because earlier they used create_proc_entry() but now they are using proc_create(). If you have any...
Linux built-in driver load order
Built-in drivers wont be loaded , hence built-in. Their initialization functions are called and the drivers are activated when kernel sets ...
What is W3c?
What is W3c? It stands for world wide web consortium which is an international consortium of companies.it was founded in 1994 by Tim Bernes...
Linux keyboard event capturing /dev/inputX
I was trying to capture keyboard events. e.g. I want to drill down a keylogger from the scratch. After 2 hours of fighting I found the follo...
How to check visibility of software keyboard in Android?
NEW ANSWER added Jan 25th 2012 Since writing the below answer, someone clued me in to the existence of ViewTreeObserver and friends, API...
More than two SPI devices on an Arm board that supports only two?
The Arm processor on one of our boards has an spi port with two chip select lines. It is mentioned in the processor's datasheet that it ...
How do you set, clear and toggle a single bit in C/C++?
Setting a bit Use the bitwise OR operator ( | ) to set a bit. number |= 1 << x ; That will set bit x . Clearing a bit Use the bitw...
What should main() return in C and C++?
What is the correct (most efficient) way to define the main() function in C and C++ — int main() or void main() — and why? If int main...
About Me
tetst
View my complete profile
Powered by
Blogger
.
Blog Archive
►
2014
(256)
►
February
(168)
►
January
(88)
▼
2013
(64)
►
November
(6)
►
September
(4)
►
July
(3)
►
May
(6)
►
April
(18)
▼
March
(21)
What Is Edge Triggered Interrupt and Level Trigger...
What Is Interrupt Sevice Routine or Interrupt Hand...
what Is Interrupt?
what Is Meaning of the Declaration Const Volatile ...
What Is Verification and Validation?
What Is Unit and White Box Testing
What Is integration Testing?
What is Reset Vector ?
What Is #Progma Directive?
Far Pointer in C Programming
What Is Huge Pointer
What Is Pointer?
What Is Wild Pointer
What Is Null Pointer in C Language?
What Is Callback Functions in C
Write a Program to Swap Two Numbers Without Using ...
What Is Structure Padding
What Is Dangling Pointer
What Is Watchdog?
What Is Near Pointer?
What Is Function Pointer
►
February
(4)
►
January
(2)
Labels
500 Oracle interview questions and answers
(27)
AJAX
(1)
Android
(19)
C faq
(41)
C PLUS PLUS
(3)
Codeigniter
(2)
Data structure
(3)
DHTML
(2)
Drupal7
(9)
Embedded System
(76)
HR interview
(20)
HTML
(8)
Java
(8)
javascript
(33)
Php
(23)
SSC Requirement
(1)
Web Browser
(2)
web programming
(2)
webmaster
(2)
WORDPRESS
(18)
xml
(10)
Blog Archive
►
2014
(256)
►
February
(168)
►
January
(88)
▼
2013
(64)
►
November
(6)
►
September
(4)
►
July
(3)
►
May
(6)
►
April
(18)
▼
March
(21)
What Is Edge Triggered Interrupt and Level Trigger...
What Is Interrupt Sevice Routine or Interrupt Hand...
what Is Interrupt?
what Is Meaning of the Declaration Const Volatile ...
What Is Verification and Validation?
What Is Unit and White Box Testing
What Is integration Testing?
What is Reset Vector ?
What Is #Progma Directive?
Far Pointer in C Programming
What Is Huge Pointer
What Is Pointer?
What Is Wild Pointer
What Is Null Pointer in C Language?
What Is Callback Functions in C
Write a Program to Swap Two Numbers Without Using ...
What Is Structure Padding
What Is Dangling Pointer
What Is Watchdog?
What Is Near Pointer?
What Is Function Pointer
►
February
(4)
►
January
(2)
Categories
500 Oracle interview questions and answers
(27)
AJAX
(1)
Android
(19)
C faq
(41)
C PLUS PLUS
(3)
Codeigniter
(2)
Data structure
(3)
DHTML
(2)
Drupal7
(9)
Embedded System
(76)
HR interview
(20)
HTML
(8)
Java
(8)
javascript
(33)
Php
(23)
SSC Requirement
(1)
Web Browser
(2)
web programming
(2)
webmaster
(2)
WORDPRESS
(18)
xml
(10)
0 comments:
Post a Comment