I am trying to learn C, but for some reason my program doesn't want to print letters. It can print everything else like integers and floats just fine.
It doesn't give me an error as well, it just skips over the line where the character should be.
I tried simply printing out the letter "E" as a test, and it just printed out nothing.
#include <stdio.h>
int main()
{
int mynum = 6;
float myfloat = 3.14;
char* myletter = "E";
printf("%i\n",mynum);
printf("%f\n",myfloat);
printf("%c\n",myletter);
}