https://technotip.com/7903/c-program-to-add-two-numbers-using-pointers/
Lets write a C program to add 2 numbers using pointer and function.
In this video tutorial we will show both ways of adding 2 numbers using pointers: 1. Using function 2. Without using function.
Expected Input / Output
Enter 2 numbers
25
25
Using *ptr1 + *ptr2 : 25 + 25 = 50
Using (&a) + *(&b) : 25 + 25 = 50
C Programming Interview / Viva Q&A List
https://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert
https://technotip.com/6086/c-programming-beginner-to-advance-to-expert/