TutorialsBazaar

← Back

Learn C Programming

Module 12/15

Pointers

Module 12 of 15

Pointers store memory addresses of variables. They are used for dynamic memory allocation, arrays, and functions. They are one of the most powerful features of C.

Pointers variables के memory address को store करते हैं। ये dynamic memory और arrays में उपयोग होते हैं।

#include <stdio.h>

int main() {
    printf("Welcome to Pointers");
    return 0;
}