Home » C# Programming » Datatypes

Which of the following statement correctly assigns a value 33 to a variable c? byte a = 11, b = 22, c;

Correct Answer: c = (byte) (a + b);

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion