Programmer Coding

Author name: admin

Pointer in C Language

What is Pointer? A pointer in C is a variable that stores the address of another variable. This variable can be an int, char, array, function or any other parameter. The size of Syntax int n = 10; int * p = &n; // Variable p of type pointer is pointing to the address of the variable n of type integer. the array depends on the architecture. However, on 32-bit architectures, the size of the pointer is 2 […]

Pointer in C Language Read More »

Scroll to Top