C Programs / Addition and Multiplication using pointers C program
Program Name
Write a C Program for Addition and Multiplication using pointers. |
Theory
Pointer is a variable used to store the address of another variable in the memory location.
pointer operator = *
Address operator =&
|
Program Code
|
Input
Enter a,b values
2 3
|
Output
sum= 5
Product= 6
|
Online C Compiler (To copy paste and Run the c program)
|
|