Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void inline f1(char b) 
{
    printf ("%d\n",b);
}
int main() 
{
    f1('a');
    return 0;
}

A. a

B. 65

C. error

D. 97

Answer: Option D


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous