In this video, you will understand concepts of pointers in C and learn how to declare pointers in C programming language.
Pointers in C is one of the excellent feature introduced in C. It makes the programming very interesting. C pointer is a variable that represents the location (rather than the value) of a data item.
Talking like a layman, C pointers points to an object or something.
Here is the syntax to declare a pointer in C:
data-type *pointer_name;
Interested in learning C programming language? FREE C Programming 5-Day Challenge for you - https://www.aptuts.com/c-programming-...
#aptuts #CPointers #CProgramming