how to do celcius symbol in c???
the ° ascii code is 176 if i am not wrong....
but how come i can't display it in output?
It give me junk.

Code:
int test=97;

printf("%c", test);
this 2 line will return me an "a" output.
but when i substitude it with 176, how come it can't give me out the symbol that i want???
It shld be ° but it give me junk....
Urgent. Pls help. Thanks!