int X(int number) {
return 5 + number;
}
What value is returned by the call
X(y*4)
if y has the value 3?
How would I enter this in Visual 2010 C# express?
int X(int number) {
return 5 + number;
}
What value is returned by the call
X(y*4)
if y has the value 3?
How would I enter this in Visual 2010 C# express?