What are pointers ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What are pointers ?

12th Jun 2018, 4:31 AM
Mubarrim Iqbal
2 Answers
+ 6
here is a quick start for you in C https://www.sololearn.com/learn/1416/?ref=app
12th Jun 2018, 4:36 AM
Sudarshan Rai
Sudarshan Rai - avatar
+ 1
Pointers generally refers to the memory address of any other variable or value in the code. In our code when we assign a value to any variable then that variable will automatically assigned a memory address inside the system. To fetch those memory addresses, pointers are used. Syntax: datatype *pointername Example: int *ptr
12th Jun 2018, 5:55 AM
Varun Agarwal
Varun Agarwal - avatar