Hallo guys and gals long time no speak

As teh title suggests I'm having problems with strcmp in C, basically when I use it I crash the program and I'm trying to work out how to fix it.
I am working on a file loader which has the basic skinny of.
char c;
Yadda yadda file opening stuff all works good.
c = fgetc(file);
yaddda yadda
strcmp( c, "," );
bam it crashes, I hve no idea why, because if I send it something like strcmp( ",", "," ); it works.
Any help would be appreciated.