Greetings,
I am currently using sublime text 2 to write and run my programs in C , i’ve managed to make a C build system and it seems to work for smaller programs like hello world for example, although i also have a bigger program that i had to make for university and it doesn’t seem to want to build. I’ve searched everywhere and i couldn’t find a solution to this error:
Traceback (most recent call last):
File "./sublime_plugin.py", line 337, in run_
File "./exec.py", line 130, in run
UnicodeEncodeError: 'ascii' codec can't encode character u'\u0327' in position 65: ordinal not in range(128)
I looked a bit into this and found out that this means there is a “ç” in my code thus it cannot encode, although i looked through my code and even used the find tool and didn’t manage to find any “ç” character.
Would love to have some help on this.
Thanks for reading,
Kevin
EDIT: Fixed the unicode character issue, the folder that contained the file had the “ç” character, although i’ve come across to another problem, my program in xcode runs perfectly fine, although in sublime text 2 it loops endlessly, ignoring any scanf. (Mac OS X)