The code is
#include <stdio.h> int main() { char star = "*"; printf("This is %c",star); return 0 ; }
The type of "*" is a char [2] aka char * but you want a char which you write as:
"*"
char [2]
char *
char
char star = '*';