将用户输入中的两个整数打印到“abc.txt”文件的正确函数是什么?这是我到目前为止所尝试的。
#include <stdio.h>
#include <conio.h>
int main (void) {
FILE * fp;
int num1, num2;
fp = fopen ("abc.txt", "w+");
printf("Input two numbers : " );
fscanf(fp, "%d %d", &num1, &num2);
fclose(fp);
getch();
return(0);
}