#pointers #C_Language #C_Programming #Programming #ANSI #Learn_C_Programming #Programming_Language #Jobs #WisdomJobs #Careers
Pointers In C Language & Using Pointers In C Programming : Pointers in C language is a variable that stores/points the address of another variable. A Pointer in C is used to allocate memory dynamically i.e. at run time. The pointer variable might be belonging to any of the data type such as int, float, char, double, short etc.
If we declare a variable v of type int, v will actually store a value.
int v=0;
v is equal to zero now.
However, each variable, apart from value, also has its address (or, simply put, where it is located in the memory). The address can be retrieved by putting an ampersand (&) before the variable name.
Thanks for watching

0 Comments