adplus-dvertising
frame-decoration

Question

What is the output of this 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

Posted under C Programming

Answer: (b).a

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this C code?