C Programming Tutorial 25, Pointers pt.1

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

One does not simply understand pointers

mopeyman
Автор

You were able to convey the point of this video excellently. 

juicee
Автор

I see two scenarios in this question:
1) you printed pointer_to_x and &x, and expected them to be different when they should be equal because pointer_to_x is simply storing the address that x is stored at (which can be seen using &x)
or
2) you printed pointer_to_x and pointer_to_y and expected them to be the same when they should NOT be the same because they are each pointing to different variables (which are located in different addresses in memory, even if they have the same value)

FreeER
Автор

Best pointers video I have seen nice work

etanleibovitz
Автор

thank you very much Adam, these tips are useful :) the best tutorials ive ever seen ;)

ajlasukrija
Автор

Can't wait for the other video :)

TheDoppelganger
Автор

a very good Explanation, thx
But you use %u ? why not %i ?

Codality
Автор

when i print one pointer and its corresponding variable together it prints the same number twice but when i print two different pointers it executes two totally different numbers. why does it rewrite the first address?

simransingh
Автор

anyone else getting an format error when printing out the address of a pointer?

seal
Автор

how is it possible that i got the same address as you? 2686748  o.O

MrRguitarAl