能不能将整串字符做形参实参?
#include <stdio.h>
#include <process.h>
void main()
{ char s[100];
*s="D:\\ANSYS90.exe -b -p ane3fl -i F:\\ansysroot\\yongci.txt -o F:\\ansysroot\\file1.out";
char startansys(s);
}
void startansys(char *s)
{int result;
printf("Solving...");
result=system(s);
printf("Solution finished...");
exit(0);
}
想在主程序中调用子函数startansys,将整个字符串设为函数参数,这样行不行?
指针和变量类型有问题,怎么改?我改的总是错。就是s的类型
谢谢~