We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Introduction
- Pointer
- Discussions
Pointer
Pointer
Sort by
recency
|
1161 Discussions
|
Please Login in order to post a comment
use cpp 20
include
include
include
include
include
using namespace std;
// Function to update sum and absolute difference via pointers void update(int *a, int *b) { int sum = *a + *b; int diff = *a - *b; if (diff < 0) diff = -diff; // Absolute value *a = sum; *b = diff; }
int main() { int a, b; cin >> a >> b; update(&a, &b); cout << a << endl << b << endl; return 0; }
Here is Pointers in c++ solution - https://programmingoneonone.com/hackerrank-pointer-solution-in-cpp.html