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
Which of the conversions are valid for the following C# code?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Which of the conversions are valid for the following C# code?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!