Im trying to start using dev-c++. Im using C language. I keep getting an error message "syntax error before "system""
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf ("Yo is it working.")
system("PAUSE");
}
Semicolon after printf statement
Still get the same message
I figured it out. Thank you