C語言stdlib頭文件(stdlib.h)中strtoull函數的用法及代碼示例。
用法:
unsigned long long int strtoull (const char* str, char** endptr, int base);
將字符串轉換為無符號長整型整數
unsigned long long int
。如果endptr不是空指針,該函數還會設置endptr指向數字後的第一個字符。該函數的運作方式類似於strtol解釋字符串,但產生類型的數字
unsigned long long int
(參考strtol有關解釋過程的詳細信息)。參數
- str
- C-string以整數表示。
- endptr
- 引用類型的對象
char*
,其值由函數設置為中的下一個字符str數值之後。
此參數也可以是空指針,在這種情況下不使用它。 - base
- 確定有效字符及其解釋的數字基數(基數)。
如果是這樣0
,所用的底數由序列中的格式決定(請參見strtol有關詳細信息)。
返回值
成功後,該函數將轉換後的整數返回為unsigned long long int
值。如果無法執行有效的轉換,則返回零值(
0ULL
)。如果讀取的值超出可表示的值範圍
unsigned long long int
,函數返回ULLONG_MAX(在<climits>), 和errno被設定為ERANGE。示例
/* strtoull example */
#include <stdio.h> /* printf, NULL */
#include <stdlib.h> /* strtoull */
int main ()
{
char szNumbers[] = "250068492 7b06af00 1100011011110101010001100000 0x6fffff";
char * pEnd;
unsigned long long int ulli1, ulli2, ulli3, ulli4;
ulli1 = strtoull (szNumbers, &pEnd, 10);
ulli2 = strtoull (pEnd, &pEnd, 16);
ulli3 = strtoull (pEnd, &pEnd, 2);
ulli4 = strtoull (pEnd, NULL, 0);
printf ("The decimal equivalents are: %llu, %llu, %llu and %llu.\n", ulli1, ulli2, ulli3, ulli4);
return 0;
}
輸出:
The decimal equivalents are: 250068492, 2064035584, 208622688 and 7340031. |
相關用法
- C語言 atof用法及代碼示例
- C語言 atoi用法及代碼示例
- C語言 atol用法及代碼示例
- C語言 atoll用法及代碼示例
- C語言 strtod用法及代碼示例
- C語言 strtof用法及代碼示例
- C語言 strtol用法及代碼示例
- C語言 strtold用法及代碼示例
- C語言 strtoll用法及代碼示例
- C語言 strtoul用法及代碼示例
- C語言 rand用法及代碼示例
- C語言 srand用法及代碼示例
- C語言 calloc用法及代碼示例
- C語言 free用法及代碼示例
- C語言 malloc用法及代碼示例
- C語言 realloc用法及代碼示例
- C語言 abort用法及代碼示例
- C語言 atexit用法及代碼示例
- C語言 at_quick_exit用法及代碼示例
- C語言 exit用法及代碼示例
- C語言 getenv用法及代碼示例
- C語言 quick_exit用法及代碼示例
- C語言 system用法及代碼示例
- C語言 _Exit用法及代碼示例
- C語言 bsearch用法及代碼示例
- C語言 qsort用法及代碼示例
- C語言 abs用法及代碼示例
- C語言 div用法及代碼示例
- C語言 labs用法及代碼示例
- C語言 ldiv用法及代碼示例
- C語言 llabs用法及代碼示例
- C語言 lldiv用法及代碼示例
- C語言 mblen用法及代碼示例
- C語言 mbtowc用法及代碼示例
- C語言 wctomb用法及代碼示例
- C語言 wcstombs用法及代碼示例
注:本文由純淨天空篩選整理自C標準庫大神的英文原創作品 C strtoull function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。