I'm trying to write a simply Hello, World! program, but when attempting to compile with GCC, I receive the following error:
helloworld.c:5:18: error: expected ‘)’ before ‘World’
printf(“Hello World”);
^
helloworld.c:5:18: error: stray ‘\342’ in program
helloworld.c:5:18: error: stray ‘\200’ in program
helloworld.c:5:18: error: stray ‘\235’ in program
Why is this?
Compiler: GCC 4.8.4 (2014-12-19). OS: Ubuntu 14.04 (Trusty Tahr).