You are viewing a single comment's thread. Return to all comments →
#include <stdio.h> #include<iostream> void update(int *a,int *b) { int temp= *a + *b; *b=abs(*a - *b); *a=temp; }
Seems like cookies are disabled on this browser, please enable them to open this website
Pointer
You are viewing a single comment's thread. Return to all comments →