what are pointers in c language
Answers
Answered by
1
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.
Answered by
2
Hey mate here is your answer
In computer science, a pointer is a programming language object that stores the memory address of another value located in computer memory. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer.
For example, an integer variable holds (or you can say stores) an integer value, however an integer pointer holds the address of a integer variable.
Hope this answer will help you!!
In computer science, a pointer is a programming language object that stores the memory address of another value located in computer memory. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer.
For example, an integer variable holds (or you can say stores) an integer value, however an integer pointer holds the address of a integer variable.
Hope this answer will help you!!
1Anushka12:
What??
Similar questions