can anyone explain me pointers | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

can anyone explain me pointers

25th Apr 2017, 10:28 AM
Yacouba Gnamou
Yacouba Gnamou - avatar
3 ответов
+ 6
I was suffering from same problem. The ONLY way I solved it is here :- https://youtu.be/Fa6S8Pz924k Thanks The new boston ,Thanks Bucky.
25th Apr 2017, 11:11 AM
Meharban Singh
Meharban Singh - avatar
+ 5
thanks
25th Apr 2017, 11:36 AM
Isomer
Isomer - avatar
+ 3
A pointer is a variable whose value is the address of another variable. Like any variable or constant, you must declare a pointer before you can work with it. Source: 1) https://www.tutorialspoint.com/cplusplus/cpp_pointers.htm 2) http://www.cplusplus.com/doc/tutorial/pointers/ Pointers are very useful and offer great advantage as far as speed, ease of access and efficiency go. The syntax is a little different since new symbols are introduced (*,&) but you will find that once you master it, it is an asset in a programmer's arsenal. Many many things you can do with pointers. If the sources above do not cover what you are looking for, feel free to ask for more info. There is already another thread on the topic, where pointers are very well explained. Hit that search button for any future inquiries to be sure you get the best answers. https://www.sololearn.com/Discuss/199279/?ref=app
25th Apr 2017, 10:38 AM
Billy Tsouvalas