Introduction
In C programming, pointers are used to handle the addresses of variables. Here, we will learn how to add two numbers using pointers in C programming.
Note: You need to create the file
~/project/main.c
yourself to practice coding and learn how to compile and run it using gcc.
cd ~/project
## create main.c
touch main.c
## compile main.c
gcc main.c -o main
## run main
./main