• Skip to main content
  • Skip to primary sidebar
  • Skip to secondary sidebar
  • Skip to footer

Computer Notes

Library
    • Computer Fundamental
    • Computer Memory
    • DBMS Tutorial
    • Operating System
    • Computer Networking
    • C Programming
    • C++ Programming
    • Java Programming
    • C# Programming
    • SQL Tutorial
    • Management Tutorial
    • Computer Graphics
    • Compiler Design
    • Style Sheet
    • JavaScript Tutorial
    • Html Tutorial
    • Wordpress Tutorial
    • Python Tutorial
    • PHP Tutorial
    • JSP Tutorial
    • AngularJS Tutorial
    • Data Structures
    • E Commerce Tutorial
    • Visual Basic
    • Structs2 Tutorial
    • Digital Electronics
    • Internet Terms
    • Servlet Tutorial
    • Software Engineering
    • Interviews Questions
    • Basic Terms
    • Troubleshooting
Menu

Header Right

Home » C » Pointer » Declaration and Initialization of Pointers in C
Next →
← Prev

Declaration and Initialization of Pointers in C

By Dinesh Thakur

The declaration of a pointer variable in C, comprises the type of pointer followed by indirection operator (*) which is followed by an identifier for the pointer. The declaration is done as follows:

type* Identifier;

In case of pointers, the type of pointer variable is the same as the type of the variable for which the pointer is being declared. Thus, if the variable is int, the type of its pointer is also int. If the· type of variable is float, the type of its pointer is also float. The distinction between the declaration of a pointer and in declaration of a variable is the existence of asterisk (*) between the type and the name of pointer. The compiler on encountering the operator (*) after type makes out that the variable being declared is a pointer and not an ordinary variable. Consider the following examples:

int n; // declaration of a variable of type int.
int* ptr; // declaration of a pointer to a variable of type int.

The first line in the above code is the declaration of a variable of type int and the second line of code is the declaration of a pointer to a variable of type int. In the above declaration, the asterisk (*) is attached to int. We may as well write it with the asterisk attached to ptr or attached to none as shown below. All are considered to be equivalent.

int *ptr;
int *ptr;

The name or identifier for a pointer may be decided in the same manner as done for any other variable. However, to distinguish names for pointer variables from other variables, programmers, in general, prefer to attach p or P or ptr or PTR to the name of variable to obtain the name of its pointer. Many programmers simply use p, P, or ptr, etc., as names of pointers. In the above declaration, the pointer pt r is not initialized. Let n be an integer variable; if we want that ptr declared above should point to n we have to assign the address of n to ptr. The assignment is shown in Fig.

    The variable ptr points to value of n which is 60

According to the above assignment, the pointer ptr points to value of n  Similarly, if m is another integer variable and if we want that ptr should now point to m then we have to assign the address of m to ptr, as done on the left side of Fig. Also, declaration and assignment may be done in the same line. The declaration of another pointer ptrm to the same variable m is also shown in the figure.

     Both the pointers ptr and pt rm now point to the value of variable m

According to the above declaration, the address of m is the value of ptr and ptr points to the value of m. Earlier when pt r was assigned &n, it pointed to the value of n. So, a pointer is a variable and the values that may be assigned to it are the addresses of the objects. At any instant of time, a pointer points to an object whose address is assigned to it. We may declare another pointer ptrm to the same variable m. The pt rm is also be assigned the value &m. Now, both the pointers ptr and ptrm point to value of m. There may be several pointers to the same variable. The values of all these pointers is same, i.e., the memory address where the value of variable is stored.

Pointers to floating point variables and to character variables may similarly be declared as given below. Let ptrf be the name of a pointer to float type variables and ptrc be the name of a pointer to a character variable. These are defined and illustrated in Fig.

    Pointers to floating point and character variables

The variables as well as pointers of same type may be declared and assigned values in the same line. An example of such a declaration is provided below. However, the names of pointers must have asterisk (*) on their left side, otherwise, they would be ordinary variables.

double A, B, *ptra = &A, *ptrb;
ptrb = &B; // assignment of pointer ptrb by &B

The declaration of variables A and B; pointers *ptra and *ptrb; and assignment to pointer *ptra is done in the first line of the code above. In the second line, assignment to ptrb is carried out. Also, note that names of pointers have asterisk (*) on their left side.

You’ll also like:

  1. Function Declaration or Prototype in C
  2. C Program using a function declaration with an undefined parameter list
  3. difference between declaring a variable in the General Declaration section of a standard code module and declaring variable in the general declaration section of a form code module?
  4. Advantages of using pointers in C
  5. Pointers to Strings in C
Next →
← Prev
Like/Subscribe us for latest updates     

About Dinesh Thakur
Dinesh ThakurDinesh Thakur holds an B.C.A, MCDBA, MCSD certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps.

Dinesh Thakur is a Freelance Writer who helps different clients from all over the globe. Dinesh has written over 500+ blogs, 30+ eBooks, and 10000+ Posts for all types of clients.


For any type of query or something that you think is missing, please feel free to Contact us.


Primary Sidebar

C Programming

C Programming Tutorials

  • C - History
  • C - Anatomy
  • C - Constants
  • C - Identifiers
  • C - Data Types
  • C - Libraries File
  • C - Header Files
  • C - Basic Language
  • C - Data Types Sizes
  • C - Header Files Importance
  • C - Escape Sequences
  • C - Main() Purpose
  • C - Program Procedure
  • C - Control Statements
  • C - Enumeration Constant
  • C - Add numbers
  • C - Return Statement
  • C - Avoid Goto
  • C - Command Line Arguments
  • C - Switch Case
  • C - Switch Case Limitations
  • C - getchar() and putchar()
  • C - Iteration Statements
  • C - Pass by Value and Reference
  • C - Structures and Unions
  • C - Structure
  • C - Dynamic Memory
  • C - Fgets and Fputs Functions
  • C - Gets() and Puts() Functions
  • C - Armstrong Number
  • C - Storage Classes
  • C - Fibonacci Series
  • C - Precision Setting
  • C - const Parameters

C - Variable & It's Type

  • C - Variables
  • C - Variable Lifetime
  • C - Static Variable
  • C - Register Variable
  • C - Global Variables
  • C - Auto Variables
  • C - Local Variables

C - Operator & Expressions

  • C - Operator
  • C - Boolean Operators
  • C - Bitwise Operator
  • C - Arithmetic Operators
  • C - Modulus Operator
  • C - Ternary Operator
  • C - Expressions
  • C - Arithmetic Expressions

C - Array

  • C - Arrays
  • C - Array Types
  • C - Array Characteristics
  • C - Static Arrays
  • C - Global Arrays
  • C - 3D Arrays
  • C - Dynamic Arrays
  • C - Pointer to 3D Arrays
  • C - Array Elements Hold
  • C - Arrays as Function Parameters
  • C - Accessing Matrix Elements
  • C - File Handling
  • C - Matrix Multiplication
  • C - Dynamic Memory Allocation

C - Searching & Sorting

  • C - Data Structures
  • C - Linear Search
  • C - Bubble Sort
  • C - Merge Sort
  • C - Linked List
  • C - Insertion Sort
  • C - Binary Search
  • C - Selection Sort
  • C - Quick Sort

C - Functions

  • C - Functions
  • C - Functions Advantages
  • C - Void Functions
  • C - Function Call
  • C - Default Return Value
  • C - String functions

C - Pointer

  • C - Pointers
  • C - Type Casting Of Pointers
  • C - Pointer Advantages
  • C - Pointers Initialization
  • C - Vectors and Pointers

C - Differences

  • C - C Vs C++
  • C - Formal Args. Vs Actual Args.
  • C - Keywords Vs Identifiers
  • C - Strings Vs Character Arrays
  • C - Address Vs Dereference Operator
  • C - Goto Vs longjmp
  • C - Declaring Vs Defining Variable
  • C - String Vs Array
  • C - Call by Value Vs Reference
  • C - Structure Vs Union
  • C - For Vs While loops
  • C - Compiler Vs Interpreter

C - Programs

  • C Program Standard Deviation
  • C Program Calculate Tax
  • C Program Sum Series
  • C Program Merge Arrays
  • C Program Euclid’s Algorithm
  • C Program Print Weekdays
  • C Program Sum of Digits
  • C Program Print a list
  • C Program Print Pythagorean
  • C Program Quiz program
  • C Program Display Table
  • C Program Print Comma-Separated
  • C Program Prints Prime Numbers
  • C Program for Print Integer
  • C Program Count Number
  • C Program Print Color Name
  • C Program Print Odd Numbers
  • C Program Calculate area
  • C Program for a Menu
  • C Program Add Two Vectors
  • C Program Array Addresses
  • C Program Division by Zero Error
  • C Program Compare two Dates
  • C Program Tower of Hanoi
  • C Program return 3 Numbers
  • C Program for Prime Numbers
  • C Program for Factorial
  • C Program for Palindrome

Other Links

  • C Programming - PDF Version

Footer

Basic Course

  • Computer Fundamental
  • Computer Networking
  • Operating System
  • Database System
  • Computer Graphics
  • Management System
  • Software Engineering
  • Digital Electronics
  • Electronic Commerce
  • Compiler Design
  • Troubleshooting

Programming

  • Java Programming
  • Structured Query (SQL)
  • C Programming
  • C++ Programming
  • Visual Basic
  • Data Structures
  • Struts 2
  • Java Servlet
  • C# Programming
  • Basic Terms
  • Interviews

World Wide Web

  • Internet
  • Java Script
  • HTML Language
  • Cascading Style Sheet
  • Java Server Pages
  • Wordpress
  • PHP
  • Python Tutorial
  • AngularJS
  • Troubleshooting

 About Us |  Contact Us |  FAQ

Dinesh Thakur is a Technology Columinist and founder of Computer Notes.

Copyright © 2025. All Rights Reserved.

APPLY FOR ONLINE JOB IN BIGGEST CRYPTO COMPANIES
APPLY NOW