UPDATE: The code itself was fine, I just installed an Extension called "Code Runner" and it solved the problem.
I'm using VS code to write a HelloWorld in C, but when I run it, there is extra @ character in the beginning of each line. Where does this "@" character is coming from and how can I only print the String? This is my code
#include <stdio.h>
int main(){
printf("Hello
World");
return 0;
}
This is what I get in DEBUG CONSOLE
@"Hello
"
@"World"