这是下面的代码
图1
#include<stdio.h> #include<stdlib.h> #include<conio.h> #include<string.h> int main() { printf("Before Execution n"); system("c:\Rasmi Personal\PERSONAL\C\Code Block\C_Test\bin\Debug\C_Test.exe"); printf("nAfter Execution n"); return 0; }
在c: Rasmi Personal PERSONAL C Code Block C_Test bin Debug C_Test项目中包含的代码是
图2:
如何在c ++中播放.WAV声音
strcat添加第二个参数两次
在Windows操作系统的Code :: Blocks编辑器中对fork()的未定义引用
如何让PCRE正确使用Code :: blocks?
默认堆栈大小
#include <stdio.h> int main() { int x = 10; while( x --> 0 ) // x goes to 0 { printf("%dn",x); } return 0; }
Before Execution 'c:Rasmi' is not recognized as an internal or external command,operable program or batch file. After Execution
请帮我解决这个问题。
PS: – 我在Windows XP中使用CODE :: BLOCKS。
代码块编译不可执行
如何在Windows下编译Box2D的Code :: Blocks / MinGW32?
C ++从Linux上的剪贴板获取string
代码::块和Lapack
cUrl:未定义的参考
您正在使用其中包含空格的路径名称。 当你这样做的时候,所有事情都会变得更加混乱,而且你必须在正确的地方加上引号,才能使任何事情发挥作用。
我建议使用不含空格的路径名称。
如果您仍想尝试在路径名称中使用空格,则可以执行以下操作:
system(""c:\Rasmi Personal\PERSONAL\C\Code Block\C_Test\bin\Debug\C_Test.exe"");