calling by reference c++
int main() {
int b = 1;
fun(&b);
// now b = 10;
return 0;
}
calling by reference c++
int main() {
int b = 1;
fun(&b);
// now b = 10;
return 0;
}
calling by reference c++
void fun2(int& a)
{
a = 5;
}
int main()
{
int b = 10;
fun2(b);
// now b = 5;
return 0;
}
calling by reference c++
void fun(int *a)
{
*a = 10;
}
call by reference c++ example
//call by reference example c++
#include <iostream>
using namespace std;
void swap(int& x, int& y) {
cout << x << " " << y << endl;
int temp = x;
x = y;
y = temp;
cout << x << " " << y << endl;
}
int main() {
int a = 7;
int b = 9;
swap(a, b);
}
calling by reference c++
void fun3(int a)
{
a = 10;
}
int main()
{
int b = 1;
fun3(b);
// b is still 1 now!
return 0;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us