数値と比較する必要がある単純な C コードがあります。しかし、数字は文字の配列です。これらの数値を比較するのにどの方法が速いか 1) strcmp 関数を使用して数値の配列と比較します。2) atoi 関数を使用して各数値文字列を数値に変換し、両方を比較します。
最後に、これらの数値をテキスト ファイルに戻す必要があります。
int main(int argc, char* argv[]){
char nubmer1[] = "12823423";
char number2[] = "12453453";
//compare logic here. and need help with this.
//print to .txt file logic here. i have this with me.
}