0
How do I solve this?
Int a=5, b=30, c=45; If (b++==++c) a=aĆa; a? ___ b? ___
2 Answers
+ 2
Remember that C# is case sensitive. That code would not compile. b was defined as int, but B was not defined.
+ 1
a is still 5 and B doesnāt exist?
Int a=5, b=30, c=45; If (b++==++c) a=aĆa; a? ___ b? ___