How To: Install Nmake

#include <stdio.h> int main() printf("Hello from NMAKE!\n"); return 0;

hello.exe: hello.obj cl hello.obj /Fehello.exe hello.obj: hello.c cl /c hello.c how to install nmake

Run:

Create hello.c :

nmake /? You should see help information with version details. Create a file called makefile : #include &lt;stdio