Examveda

What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
    char c = 't';
    printf("is :%c\n", tolower('A'));
}

A. A

B. a

C. Non-zero number

D. Zero

Answer: Option B


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output