In this part you will learn:
1. C syntax
2. Pointers
3. Pointers declaration
4. Function arguments as pointers
5. Showing output
In this tutorial we will use pointers with functions. Using functions with pointers is same as using functions with any normal variable. The only difference comes in the parameter list and sometimes in the return type as well when we return a pointer or an address of a variable.
Calculating Average
Open Dev C++ then File > new > source file and start writing the code below.
Add new comment