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){*a=*a+*b;*b=abs(*a-*b-*b);//The extra *b is because *a value is changed above by adding *b//So to equalize the effect we subtract *b}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 →