How can I run another program from my c program in Windows 7? I am using dev-c++. This is my code:
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
int main( void ) {
int result ;
result=system("C:\Dev-Cpp\devcpp.exe\s");
printf("%d",result);
getch();
}