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,diff;sum=*a+*b;diff=abs(*a-*b);*a=sum;*b=diff;}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
Pointers in C
You are viewing a single comment's thread. Return to all comments →