A
Arash_89
Guest
Hello,
What's the differences between these?
#include <iostream>
#include<string>
using namespace std;
void Test(int const& i)
{
cout << i;
}
void Test2(int const i)
{
cout << i;
}
int main()
{
Test(10);
return 0;
}
Thanks
Continue reading...
What's the differences between these?
#include <iostream>
#include<string>
using namespace std;
void Test(int const& i)
{
cout << i;
}
void Test2(int const i)
{
cout << i;
}
int main()
{
Test(10);
return 0;
}
Thanks
Continue reading...