欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C语言字符串转整型及分隔字符串代码讲解

程序员文章站 2022-04-12 21:33:46
字符串转整型 #include ... char cs[] = "123"; int num = atoi(cs); 分隔字符串 #i...

字符串转整型

#include 
...
char cs[] = "123";
int num = atoi(cs);

分隔字符串

#include
...
char str[] = "I am student";
char *ptr;  
ptr = strtok(str, " "); 
while (ptr != NULL) {  
     print("%s",ptr);
     //输出每一个字符/字符串
     ptr = strtok(NULL, " ");  
}