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'));
}
#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

Join The Discussion