What is the difference between void and null pointers.Give suitable example in support of your answer

New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Patrick M. Carey
Chapter14: Exploring Object-based Programming: Designing An Online Poker
Section14.1: Visual Overview: Custom Objects, Properties, And Methods
Problem 7QC
icon
Related questions
Question
100%

What is the difference between void and null pointers.Give suitable example in support of your answer

Expert Solution
Step 1

Null pointers:

A pointer variable assigned with the value NULL irrespective of the datatype of a pointer variable. A null pointer is one which is not pointing to anything. It is assigned a null value. If there is no address to assign to a pointer, it is considered a good practice to set it to null. Every pointer type like int *, char * have a null pointer value.
Syntax: <data type> *<variable name> = NULL;
Example: int *ptr = NULL;
char *ptr = '\0';

Step 2

Void pointers:

A pointer variable of the datatype VOID is called void pointer. It may contain the address of any other datatype pointer variable. A void pointer is one which does not have any data type associated with it. It can be assigned a value of any type. Also known as the general-purpose pointer, it is a C convention for a raw address. It is capable of storing addresses of any data type.
Syntax: void *<data type>;
Example: void *ptr;
int a; char c;
ptr = &a; //ptr changes to integer pointer as address of integer is assigned to it
ptr = &c; //ptr changes to character pointer as address of character is assigned to it.

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Concept of pointer parameter
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning