亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C語言函數strtol和strtok怎么用

小億
115
2023-11-24 03:57:40
欄目: 編程語言

C語言函數strtol和strtok的用法如下:

  1. strtol函數用于將字符串轉換為長整型數。其函數原型如下:
long strtol(const char *nptr, char **endptr, int base)
  • nptr:要轉換的字符串。
  • endptr:指向轉換完成后第一個無效字符的指針,可為NULL。
  • base:進制數,可選值為2-36之間的任意值,或者0。

示例代碼:

#include <stdio.h>
#include <stdlib.h>

int main() {
    char str[] = "12345abc";
    char *endptr;
    long num = strtol(str, &endptr, 10);
    
    if (endptr == str) {
        printf("No digits were found.\n");
    }
    else {
        printf("The number is: %ld\n", num);
        printf("The next character is: %s\n", endptr);
    }
    
    return 0;
}
  1. strtok函數用于分割字符串。其函數原型如下:
char *strtok(char *str, const char *delim)
  • str:要分割的字符串,第一次調用時傳入,以后調用傳入NULL。
  • delim:分割字符串的分隔符。

示例代碼:

#include <stdio.h>
#include <string.h>

int main() {
    char str[] = "Hello,World,How,Are,You";
    char *token;
    
    token = strtok(str, ",");
    while (token != NULL) {
        printf("%s\n", token);
        token = strtok(NULL, ",");
    }
    
    return 0;
}

0
灌阳县| 黄骅市| 曲阳县| 连州市| 广东省| 寿阳县| 林周县| 万载县| 霍州市| 宾阳县| 邮箱| 龙海市| 江口县| 孙吴县| 旺苍县| 依兰县| 建始县| 怀化市| 府谷县| 玉龙| 津市市| 平江县| 宜章县| 瑞丽市| 巴中市| 荥经县| 利辛县| 奉贤区| 灵丘县| 维西| 越西县| 阳春市| 海宁市| 广平县| 万盛区| 龙南县| 斗六市| 清丰县| 三河市| 通城县| 无极县|