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.
#include<stdio.h>voidupdate(int*a,int*b){// Complete this function intsum=*a+*b;intvalue=*a-*b;intabsValue;if(value<0){absValue=-value;}else{absValue=value;}*a=sum;*b=absValue;}intmain(){inta,b;int*pa=&a,*pb=&b;scanf("%d %d",&a,&b);update(pa,pb);printf("%d\n%d",a,b);return0;}
Cookie support is required to access HackerRank
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 →