I am learning c language and vscode. I am trying to compile the c code in VSCODE but it ran into this problem. Please help thnk you in advance!
This is the code i am trying to compile:
#include <stdio.h>
int main(void)
{
printf("Hello World!\n");
}
When i try to run in the windows terminal
make hello
this is the output
cc hello.c -o hello
process_begin: CreateProcess(NULL, cc hello.c -o hello, ...) failed.
make (e=2): The system cannot find the file specified.
make: *** [<builtin>: hello] Error 2
I tried checking for the latest version of the 'make' and 'gcc'