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
|
673 Discussions
|
Please Login in order to post a comment
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;
}
hiii