|
Hi all.
As the title says. Not sure where i'm going wrong.
#include <stdio.h>
int main()
{
printf("How do i display a pound sign? It always comes out like this \'£\'.\n");
printf("I have tried it like this too but still it makes no difference %c.\n",'£');
printf("I have looked at the ASCII but can't find a pound sign.\n");
puts("Even puts won't do it! £££££££");
return(0);
}
|