devxlogo

Using Pointers as Integers

In the early days of C, pointers were plain integers. Relics of this approach can still be found in vintage APIs and legacy code. For instance, the ANSI C header declares the following typedef name:

 typedef void(*handler)(int signum);

handler is a pointer to a function that takes int and returns void. It is used as the second parameter of the signal() function:

 void * signal(int signum, hanlder); // from 

Normally, handler points to a user-defined function to be called when a certain signal is raised. However, it may also take two special values: SIG_IGN and SIG_DFL which are in fact integer values (both are defined in ). Thus, the pointer handler can represent either a real pointer or a numeric value. This “cuteness” isn

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.