I am having "cd: too many arguments" in VSC terminal when I try to run simple helloworld (in C). This is the code. I am using code runner to run my code inside VSC.
#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}
And this is the error:
bash: cd: too many arguments