This course covers the basics of programming in C. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!
Pointers
Lesson 27 Author : GOUP Last Updated : September, 2020
Code
Copyint num = 10;
printf("%p \n", &num);
int *pNum = #
printf("%p \n", pNum);