函式名稱: strrchr
函式原型:char *strrchr(const char *str, char c);
所屬庫: string.h
函式功能:查詢乙個字元c在另乙個字串str中末次出現的位置(也就是從str的右側開始查詢字元c首次出現的位置),並返回這個位置的位址。如果未能找到指定字元,那麼函式將返回null。
strchr例子
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include
#include
int
main(
void
)
strrchr返回的
指標應當指向"rings"裡的'r',而不是「there」或"are"裡的'r'。
執行結果是:the character r is at position:rings
linux中waitpid函式用法
waitpid系統呼叫在linux函式庫中的原型是 include include pid t waitpid pid t pid,int status,int options 從本質上講,系統呼叫waitpid和wait的作用是完全相同的,但waitpid多出了兩個可由使用者控制的引數pid和op...
linux中setitimer函式用法
一 函式原型 引數 which 間歇計時器型別,有三種選擇 itimer real 數值為0,計時器的值實時遞減,傳送的訊號是sigalrm。itimer virtual 數值為1,程序執行時遞減計時器的值,傳送的訊號是sigvtalrm。itimer prof 數值為2,程序和系統執行時都遞減計時...
linux下 lseek函式用法
lseek函式 用法 表頭檔案 include include 定義函式 off t lseek int fildes,off t offset,int whence seek set 引數offset即為新的讀寫位置 seek cur 當前讀寫位置後增加offset個位移量。seek end 將讀...