Simple Program for Find a Difference Between Two Numbers using...
On this page (5sections)
About this program
This is an example program in c pointer example programs. Read the concept first: C Pointers, then study the code and output below.
Declaration Syntax
p1 = &var1;
p2 = &var2;
var = *p1 - *p2;
Find a difference between two Numbers Using Pointer
/* Simple Program for Find a difference between two Numbers Using Pointer in C*/
/* Print Pointer Address Program,C Pointer Examples */
#include<stdio.h>
int main() {
int *p1, *p2;
int num1, num2, diff;
printf("Pointer Example Program : Find a difference between two Numbers \n");
printf("\nEnter Two Numbers for Find a Difference : \n");
scanf("%d %d", &num1, &num2);
p1 = &num1;
p2 = &num2;
diff = *p1 - *p2;
printf("Difference : %d", diff);
return 0;
}
Sample Output:
Pointer Example Program : Find a difference between two Numbers
Enter Two Numbers for Find a Difference :
5
2
Difference : 3
Related Pages
Learn the concept first, then study the code:
- C Programs — Browse all C Programs.
- C Pointers — Concept — pointers, addresses and dereferencing.
- Simple Pointer Example Program — More in c pointer example programs.
- Simple Program for Print address of Variable Using Pointer in C — More in c pointer example programs.