Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

accepting multiple values from a function in cpp

#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 <<"
Remainder is: "<< r <<"
";
}
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #accepting #multiple #values #function #cpp
ADD COMMENT
Topic
Name
4+8 =