Answers for "return multiple objects from a function C++ using references"

C++
0

return multiple objects from a function C++ using references

#include <iostream>
using namespace std;
void div(int a, int b, int &quotient, int &remainder) {
   quotient = a / b;
   remainder = a % b;
}
main() {
   int a = 76, b = 10;
   int q, r;
   div(a, b, q, r);
   cout << "Quotient is: "<< q <<"\nRemainder is: "<< r <<"\n";
}
Posted by: Guest on April-25-2021

Code answers related to "return multiple objects from a function C++ using references"

Browse Popular Code Answers by Language