int x = 10; int *ptr = &x; This initializes the pointer ptr with the memory address of x .
You can initialize a pointer by assigning it the address of a variable using the unary & operator. For example: int x = 10; int *ptr = &x;
Pointers are a fundamental concept in C programming, and mastering them is crucial for becoming proficient in C. int x = 10