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
- Pointers in C
- Discussions
Pointers in C
Pointers in C
Sort by
recency
|
675 Discussions
|
Please Login in order to post a comment
include
include
void update(int *a,int *b) {
} int main() { int a, b;
}
This challenge offers a great opportunity to build foundational skills and apply them to practical scenarios! 11xplay.pro
Addition and subtraction using pointers
I included
<stdlib.h>
to useabs()
function. Here you can see my code snippet for your reference. If you have any idea feel free to comment.include
include
void update(int *a,int *b) { *a=*a + *b; *b=abs(*a - *b); // Complete this function
}
int main() { int a, b; int *pa = &a, *pb = &b;
}