1.

Does the output remain same or different for both cases? 1) char l ='k'; float b = 19.0f; int c; c = (l / convert.ToInt32(b)); Console.Writeline(c); 2) char l ='k'; float b = 19.0f; int c; c = Convert.ToInt32(l / b); console.writeline(c);

A. Yes
B. No
C. Depends on compiler
D. None of the above
Answer» C. Depends on compiler


Discussion

No Comment Found