tutorial pointers in c++ part2
Uploader Comments (simplcool)
Video Responses
All Comments (19)
-
nice video, but damn it"s not starT ,it"s star >.<
-
Very helpful. Thanks.
-
ia it possible to point to variable(x) using the following declaratin :-
int x;
int *ptr1 // pointer to variable x
or is it necessry to declare it as :-
int x;
int *ptr1=&x;
-
thganx its realy help me
-
When you initialized the pointer
int* ptr1 = &x;
is that equivalent to
int* ptr1 = x;
I think they are both pointing to the address of x, but I'm not sure.
Also, when do you use the 'new' operator for pointers?
Thanks if any1 can help out!
-
amazing keep it up, thx alot ;)
-
Awesome! Great tutorial helped me much. Thanks!
-
Best tutorial for new programmers..
5/5 !
-
this is amazing, you magically simplified what my professor made seem difficult. =) Hope you can make more.
-
Thanks alot for a good video=) really helped me!
Could you release something about using pointers in functions?
netsoj 3 years ago
i don't promise , but i'll probably do it if i have enough free time for it :).
simplcool 3 years ago
Good vid, really drives home your first tutorial.
netsoj 3 years ago
thnx
simplcool 3 years ago