Module 12 of 15
Pointers store memory addresses. They are used with arrays, functions, and dynamic memory allocation using new and delete.
Pointers memory address store करते हैं और dynamic memory allocation में उपयोग होते हैं।
#include <stdio.h>
int main() {
printf("Welcome to Pointers");
return 0;
}