1.

Correct output for code is? static void Main(string[] args) { float a = 10.553f; long b = 12L; int c; c = Convert.ToInt32(a + b); Console.WriteLine(c); }

A. 23.453
B. 22
C. 23
D. 22.453
Answer» D. 22.453


Discussion

No Comment Found