Home » C Programming » Strings » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    #include <ctype.h>
    int main()
    {
    char ch = 'I';
    printf("is : %c\n", tolower('W'));
    }
    1. I
    2. Compilation Error
    3. is : w
    4. W
    5. None of these
Correct Option: C

is : w



Your comments will be displayed only after manual approval.