6
Give the syntax of the pointers. Write a program to
add two numbers by using pointers?
Answers
Answered by
0
Answer:
MARK MY ANSWER AS BRAINLIEST PLEASE
Explanation:
In the program, we have two integer variables x and y and two pointervariables p and q. We assign the addresses of x and y to p and q respectively and then assign the sum of x and y to the variable sum. Remember '&' is the address of operator and '*' is value at the address operator.
Similar questions