Computer Science, asked by Yuvian2025, 1 year ago

What is pointer and how it is declared in c with example?

Answers

Answered by Anonymous
1

Explanation:

  • 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.

Thanks!!

Similar questions