Which of the conversions are valid for the following C# code?
Posted: Wed Jul 13, 2022 7:56 pm
static void Main(string[] args) { int a = 22; long b = 44; double c = 1.406; b = a; c = a; a = b; b = c; }
a) c = a, b = c
b) a = c, b = a
c) b = a, c = a
d) All of the mentioned
a) c = a, b = c
b) a = c, b = a
c) b = a, c = a
d) All of the mentioned