C语言 使用系统功能运行另一个.cpp文件



该程序是一个"评分器"程序,我只需请求用户输入txt文件的名称和处理txt文件并获取其信息的.cpp源文件。然后,我将源文件与 txt 文件一起编译,该文件输出另一个文本文件。然后将这种新纺织品与预期的输出进行比较(我也得到了。

系统功能允许用户从C程序运行UNIX命令。当我尝试编译用户提供的源文件时

我收到一个错误,说

"_main",引用自:主可执行文件的隐式入口/启动。
clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
sh: ./myProg: 没有这样的文件或目录

我正在编译的源文件由我的教授提供,有一个函数看起来像这样:

#include <stdio.h>
#include <stdlib.h>
#define  MAX_VALUES    3
#define  OUTPUT_LINES   5
int notmain(int argc, char **argv)
{
/*
 * argv is just the file name
 */
//printf(argv[1]);
int values[MAX_VALUES];
int i, j;

FILE *inputFile;
char name [20]="input.txt"; // I have included this piece of code to see if there is a correct output from the source file provided by the user. 
if ( (inputFile = fopen(name, "r") ) == NULL) {
     printf("Error opening input file.nn");
     exit(1);
}
for(i = 0; i < MAX_VALUES; i++)
    fscanf(inputFile, "%d", &values[i]);
for(i = 0; i < OUTPUT_LINES; i++){
   for (j=0; j < MAX_VALUES; j++)
      printf("%d ", values[j]*(i+1) + j);
   printf("n");
}
return 0;
}

我编写的代码如下所示: 此代码从用户那里获取信息,然后对其进行编译。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define NUM_LINES 5
int main(){
    char srcfile[200];
    char inpfile[200];
    char resultfile[200];
    printf("Please enter the name of the source file: n");
    scanf("%s",srcfile);
    printf("Please enter the name of the input file: n");
    scanf("%s",inpfile);
    printf("Please enter the name of the expected result file: n");
    scanf("%s",resultfile);
    char test1 [100]="gcc -o myProg ";
    char test2 [100]="./myProg ";
    strcat(test2,inpfile);
    strcat(test2," > ");
    strcat(test2,resultfile);
    strcat(test1,srcfile);
    printf("%sn",test1); //these are just tests 
    printf("%s",test2);  //these are just tests
    if (system(test1)) {
        printf("There is an error compiling the program  ");
    } 
    if (system(test2)!= 0) {
        printf("There is an error running the executable");
    } 
    return 0;
}

如果您正在寻找解决方案,我已经将其发布在答案中

您尝试编译的文件没有 main 函数,这是 C 程序的入口点。这意味着实际上不可能将该文件单独构建为可执行文件。

如果函数的名称应该notmain那么您必须编写另一个具有main函数并调用notmain的源文件。这第二个main将属于程序正在编译的可执行文件,而不是程序。您将有三个源文件:

  • 处理编译的评分程序。
  • 一种包装器文件,可以有效地执行以下操作:

    int main(int argc, char *argv[]) {
        notmain(argc, argv);
    }
    
  • 最后是要评分的程序。

您还需要extern notmain函数或提供标头来共享它。然后,您的评分器程序将编译包装器main和要一起评分的源文件。

问题:你能运行两个具有 2 个主要函数的 c 程序吗?答案是:是的。为此,您必须使用终端分别编译具有两个主要功能的程序。但是,如果他们彼此互动,恐怕我没有解决方案现在在这种特定情况下,这就是我的做法。我去了终端并写了。 在这种情况下,我运行一个程序,该程序使用系统功能运行另一个程序

gcc -c main.c (this compiles the main function). 

然后在那之后我写了 gcc -o Myprogram main.o这将创建一个名为 Myprogram 的可执行文件,您可以通过编写来运行它

 ./Myprogram 

在这种情况下,我的主要方法是编译另一个源文件,所以我不需要在终端中编译该程序。当我编译这个程序时,它在可执行文件和源文件所在的同一目录中创建了一个输出.txt文件。

相关内容

  • 没有找到相关文章

最新更新