我有一个简单的 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.
}