例如一個檔案裡有5 * 8 / 2 - 6 + 8這個運算式,要如何用fscanf讀取這個運算式?
之前有用過%c但是錯的,感謝。
#include <iostream>
using namespace std;
int main()
{
char expr[100];
printf("Input: ");
scanf("%[^\n]",expr);
printf("\nOutput: %s", expr);
return 0;
}
選我最佳解答