How to run an executable file with c language?

2019-08-05 18:44发布

I was trying to execute this program using C language compiler 3.0 every thing is going alright but when i run this program it never open firefox and when i run this program`s executable file it shows compatibility issue errors :( please help me

#include<stdlib.h>
#include<stdio.h>
int main(void)
{
 system("C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");
 return 0;
}

标签: c system
1条回答
趁早两清
2楼-- · 2019-08-05 19:38
登录 后发表回答