About Me: I am new to C#.
So i found this code on Microsoft!
int a, b, c;
a = 7;
b = a;
c = b++;
b = a + b * c;
c = a >= 100 ? b : c / 10; //This Line Is Confusing
a = (int)Math.Sqrt(b * b + c * c);
Can Someone explain me why the ? : are used There?
What's the use of the "? :"