I'm trying to run the following code but still receive error messages after including these two header files. I looked for stdarg.h in the include folder but couldn't find it.
#include <windows.h>
#include <stdio.h>


main()
{
printf ("Howdy, neighbor! This is my first C program. \n");
return 0;
}
Thanks for your help.