+ 2
Using pointers write a program that swaps two numbers is that your question? Please include that in description, not in the tags. int a=7; int b=8; int *p=&a; int *q=&b; if *p>*q{cout<<a;} else{cout<<b;} I think this workd
25th Oct 2017, 3:43 PM
👑 Prometheus 🇾🇬
👑 Prometheus 🇾🇬 - avatar