• 2022-06-16
    The 8859-1 character code for the uppercase letter A is 65. Which of these code fragments declare and initialize a variable of type char with this value?()
    A: char ch = 65;
    B: char ch = ’¥65’;
    C: char ch = ’¥0041’;
    D: char ch = ’A’;
    E: char ch = "A";