How To Divide Two Number Without Divide / Operator Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int add(int a, int b) { int carry=1,sum; while(c... Read More
How To Multiply Two Number Without Multiply * Operator Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int mul(int a, int b) { int carry=1,sum; whi... Read More
How To Subtract Two Number Without Minus - Operator 1 Comment Edit #include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,carry=1,sum; scanf("%d %d",... Read More
How To Add Two Number Without Plus + Operator Add Comment Edit #include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,c,d,carry=1,sum,i,j; scanf(... Read More