xxxxxxxxxx
def operate(a, b):
sum = a + b
diff = a - b
mul = a * b
div = a / b
return sum, diff, mul, div
xxxxxxxxxx
class Program
{
static void Main()
{
(string Name, double Salary, string Gender, string Dept) = GetEmployeeDetails(1001);
// Do something with the data.
//here we are just printing the data in the console
Console.WriteLine("Employee Details :");
Console.WriteLine($"Name: {Name}, Gender: {Gender}, Department: {Dept}, Salary:{Salary}");
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
private static (string, double, string, string) GetEmployeeDetails(long EmployeeID)
{
//based on the EmployyeID get the data from a database
//here we are hardcoded the value
string EmployeeName = "Pranaya";
double Salary = 2000;
string Gender = "Male";
string Department = "IT";
return (EmployeeName, Salary, Gender, Department);
}
}
xxxxxxxxxx
def test_list():
return ['abc', 100]
result = test_list()
print(result)
print(type(result))
# ['abc', 100]
# <class 'list'>
xxxxxxxxxx
def name():
return "John","Armin"
# print the tuple with the returned values
print(name())
# get the individual items
name_1, name_2 = name()
print(name_1, name_2)
xxxxxxxxxx
#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";
}