0
Can anyone explain step by step why the result is 32?
static int Func(int a =3,int b=7,int c = 6) { return a + b * c; } static void Main(string[] args) { int a = 4; int b = 5; int c = 2; Console.WriteLine(Func(c,b)); }
1 Antwort
+ 5
You used c and b for function then inside function a is 2 and b is 5, when you called function you haven't passed c and the c is coming from the default value 6
Then a+b*c(2+5*6) = 32