filmov
tv
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
C Programming: Beginner To Advance To Expert