阅读量:0
在C语言中,可以使用atoi()
函数将字符串转换为int类型。
#include #include int main() { char str[] = "12345"; int num = atoi(str); printf("The converted integer is: %dn", num); return 0; }
在上面的示例中,我们将字符串"12345"转换为整数,并将结果存储在变量num
中。然后我们打印出转换后的整数值。