1. 程式人生 > >C語言函式用法大全

C語言函式用法大全

轉自:http://wenku.baidu.com/link?url=P93oEpEQx6B_KtTPp6EKZQSayhVLJrNrprvhxLlo4dc3XONd3F8TSUMrpXn-4nhuJWex9mf1Q8n9hC8pwa25VcMyUoWuHiPsLF9F2Xw8G2C

另有完整版全函式用法:http://wenku.baidu.com/view/1b456ce29b89680203d825e4.html

函式名: stpcpy
功  能: 拷貝一個字串到另一個
用  法: char *stpcpy(char *destin, char*source);
程式例:

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

int main(void)
{
   char string[10];
   char *str1 = "abcdefghi";

   stpcpy(string, str1);
   printf("%s\n", string);
   return 0;
}
 
 
 

函式名: strcat
功  能: 字串拼接函式
用  法: char *strcat(char *destin, char*source);
程式例:

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

int main(void)
{
   char destination[25];
   char *blank = " ", *c = "C++",*Borland = "Borland";

   strcpy(destination, Borland);
   strcat(destination, blank);
   strcat(destination, c);

   printf("%s\n", destination);
   return 0;
}
 
 
 

函式名: strchr
功  能: 在一個串中查詢給定字元的第一個匹配之處\
用  法: char *strchr(char *str, char c);
程式例:

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

int main(void)
 {
    char string[15];
    char *ptr, c = 'r';

    strcpy(string, "This is a string");
    ptr = strchr(string, c);
    if (ptr)
       printf("The character %c is at position: %d\n",c, ptr-string);
    else
       printf("The character was not found\n");
    return 0;
 }
 
 
 

函式名: strcmp
功  能: 串比較
用  法: int strcmp(char *str1, char *str2);
看Asic碼,str1>str2,返回值 > 0;兩串相等,返回0
程式例:

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

int main(void)
 {
    char *buf1 = "aaa", *buf2 = "bbb",*buf3 = "ccc";
    int ptr;

    ptr = strcmp(buf2, buf1);
    if (ptr > 0)
       printf("buffer 2 is greater than buffer 1\n");
    else
       printf("buffer 2 is less than buffer 1\n");

    ptr = strcmp(buf2, buf3);
    if (ptr > 0)
       printf("buffer 2 is greater than buffer 3\n");
    else
       printf("buffer 2 is less than buffer 3\n");

    return 0;
 }
 
 
 

函式名: strncmpi
功  能: 將一個串中的一部分與另一個串比較, 不管大小寫
用  法: int strncmpi(char *str1, char *str2,unsigned maxlen);
程式例:

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

int main(void)
{
   char *buf1 = "BBB", *buf2 = "bbb";
   int ptr;

   ptr = strcmpi(buf2, buf1);

   if (ptr > 0)
      printf("buffer 2 is greater than buffer 1\n");

   if (ptr < 0)
      printf("buffer 2 is less than buffer 1\n");

   if (ptr == 0)
      printf("buffer 2 equals buffer 1\n");

   return 0;
}
 
 
 

函式名: strcpy
功  能: 串拷貝
用  法: char *strcpy(char *str1, char *str2);
程式例:

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

int main(void)
 {
    char string[10];
    char *str1 = "abcdefghi";

    strcpy(string, str1);
    printf("%s\n", string);
    return 0;
 }
 
 
 

函式名: strcspn
功  能: 在串中查詢第一個給定字符集內容的段
用  法: int strcspn(char *str1, char *str2);
程式例:

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

int main(void)
 {
    char *string1 = "1234567890";
    char *string2 = "747DC8";
    int length;

    length = strcspn(string1, string2);
    printf("Character where strings intersect is atposition %d\n", length);

    return 0;
 }
 
 
 

函式名: strdup
功  能: 將串拷貝到新建的位置處
用  法: char *strdup(char *str);
程式例:

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

int main(void)
 {
    char *dup_str, *string = "abcde";

    dup_str = strdup(string);
    printf("%s\n", dup_str);
    free(dup_str);

    return 0;
 }
 
 
 

函式名: stricmp
功  能: 以大小寫不敏感方式比較兩個串
用  法: int stricmp(char *str1, char *str2);
程式例:

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

int main(void)
{
   char *buf1 = "BBB", *buf2 = "bbb";
   int ptr;

   ptr = stricmp(buf2, buf1);

   if (ptr > 0)
      printf("buffer 2 is greater than buffer 1\n");

   if (ptr < 0)
      printf("buffer 2 is less than buffer 1\n");

   if (ptr == 0)
      printf("buffer 2 equals buffer 1\n");

   return 0;
}
 
 

函式名: strerror
功  能: 返回指向錯誤資訊字串的指標
用  法: char *strerror(int errnum);
程式例:

#include <stdio.h>
#include <errno.h>

int main(void)
{
   char *buffer;
   buffer = strerror(errno);
   printf("Error: %s\n", buffer);
   return 0;
}
 
 
 

函式名: strcmpi
功  能: 將一個串與另一個比較, 不管大小寫
用  法: int strcmpi(char *str1, char *str2);
程式例:

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

int main(void)
{
   char *buf1 = "BBB", *buf2 = "bbb";
   int ptr;

   ptr = strcmpi(buf2, buf1);

   if (ptr > 0)
      printf("buffer 2 is greater than buffer 1\n");

   if (ptr < 0)
      printf("buffer 2 is less than buffer 1\n");

   if (ptr == 0)
      printf("buffer 2 equals buffer 1\n");

   return 0;
}
 
 
 

函式名: strncmp
功  能: 串比較
用  法: int strncmp(char *str1, char *str2, intmaxlen);
程式例:

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

int  main(void)

{
   char *buf1 = "aaabbb", *buf2 ="bbbccc", *buf3 = "ccc";
   int ptr;

   ptr = strncmp(buf2,buf1,3);
   if (ptr > 0)
      printf("buffer 2 is greater than buffer 1\n");
   else
      printf("buffer 2 is less than buffer 1\n");

   ptr = strncmp(buf2,buf3,3);
   if (ptr > 0)
      printf("buffer 2 is greater than buffer 3\n");
   else
      printf("buffer 2 is less than buffer 3\n");

   return(0);
}
 
 

函式名: strncmpi
功  能: 把串中的一部分與另一串中的一部分比較, 不管大小寫
用  法: int strncmpi(char *str1, char *str2);
程式例:

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

int main(void)
{
   char *buf1 = "BBBccc", *buf2 ="bbbccc";
   int ptr;

   ptr = strncmpi(buf2,buf1,3);

   if (ptr > 0)
      printf("buffer 2 is greater than buffer 1\n");

   if (ptr < 0)
      printf("buffer 2 is less than buffer 1\n");

   if (ptr == 0)
      printf("buffer 2 equals buffer 1\n");

   return 0;
}
 
 

函式名: strncpy
功  能: 串拷貝
用  法: char *strncpy(char *destin, char*source, int maxlen);
程式例:

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

int main(void)
{
   char string[10];
   char *str1 = "abcdefghi";

   strncpy(string, str1, 3);
   string[3] = '\0';
   printf("%s\n", string);
   return 0;
}
 
 

函式名: strnicmp
功  能: 不注重大小寫地比較兩個串
用  法: int strnicmp(char *str1, char *str2,unsigned maxlen);
程式例:

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

int main(void)
{
   char *buf1 = "BBBccc", *buf2 ="bbbccc";
   int ptr;

   ptr = strnicmp(buf2, buf1, 3);

   if (ptr > 0)
      printf("buffer 2 is greater than buffer 1\n");

   if (ptr < 0)
      printf("buffer 2 is less than buffer 1\n");

   if (ptr == 0)
      printf("buffer 2 equals buffer 1\n");

   return 0;
}
 
 
 

函式名: strnset
功  能: 將一個串中的所有字元都設為指定字元
用  法: char *strnset(char *str, char ch,unsigned n);
程式例:

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

int main(void)
{
   char *string = "abcdefghijklmnopqrstuvwxyz";
   char letter = 'x';

   printf("string before strnset: %s\n", string);
   strnset(string, letter, 13);
   printf("string after  strnset: %s\n", string);

   return 0;
}
 
 

函式名: strpbrk
功  能: 在串中查詢給定字符集中的字元
用  法: char *strpbrk(char *str1, char *str2);
程式例:

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

int main(void)
{
   char *string1 = "abcdefghijklmnopqrstuvwxyz";
   char *string2 = "onm";
   char *ptr;

   ptr = strpbrk(string1, string2);

   if (ptr)
      printf("strpbrk found first character: %c\n",*ptr);
   else
      printf("strpbrk didn't find character inset\n");

   return 0;
}
 
 
 

函式名: strrchr
功  能: 在串中查詢指定字元的最後一個出現
用  法: char *strrchr(char *str, char c);
程式例:

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

int main(void)
{
   char string[15];
   char *ptr, c = 'r';

   strcpy(string, "This is a string");
   ptr = strrchr(string, c);
   if (ptr)
      printf("The character %c is at position: %d\n",c, ptr-string);
   else
      printf("The character was not found\n");
   return 0;
}
 
 
 

函式名: strrev
功  能: 串倒轉
用  法: char *strrev(char *str);
程式例:

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

int main(void)
{
   char *forward = "string";

   printf("Before strrev(): %s\n", forward);
   strrev(forward);
   printf("After strrev():  %s\n", forward);
   return 0;
}
 

函式名: strset
功  能: 將一個串中的所有字元都設為指定字元
用  法: char *strset(char *str, char c);
程式例:

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

int main(void)
{
   char string[10] = "123456789";
   char symbol = 'c';

   printf("Before strset(): %s\n", string);
   strset(string, symbol);
   printf("After strset():  %s\n", string);
   return 0;
}
 
 
 

函式名: strspn
功  能: 在串中查詢指定字符集的子集的第一次出現
用  法: int strspn(char *str1, char *str2);
程式例:

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

int main(void)
{
   char *string1 = "1234567890";
   char *string2 = "123DC8";
   int length;

   length = strspn(string1, string2);
   printf("Character where strings differ is at position%d\n", length);
   return 0;
}
 
 

函式名: strstr
功  能: 在串中查詢指定字串的第一次出現
用  法: char *strstr(char *str1, char *str2);
程式例:

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

int main(void)
{
   char *str1 = "Borland International", *str2 ="nation", *ptr;

   ptr = strstr(str1, str2);
   printf("The substring is: %s\n", ptr);
   return 0;
}
 
 

函式名: strtod
功  能: 將字串轉換為double型值
用  法: double strtod(char *str, char**endptr);
程式例:

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

int main(void)
{
   char input[80], *endptr;
   double value;

   printf("Enter a floating point number:");
   gets(input);
   value = strtod(input, &endptr);
   printf("The string is %s the number is %lf\n",input, value);
   return 0;
}
 
 
 

函式名: strtok
功  能: 查詢由在第二個串中指定的分界符分隔開的單詞
用  法: char *strtok(char *str1, char *str2);
程式例:

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

int main(void)
{
   char input[16] = "abc,d";
   char *p;

   /* strtok places a NULL terminator
   in front of the token, if found */
   p = strtok(input, ",");
   if (p)   printf("%s\n", p);

   /* A second call to strtok using a NULL
   as the first parameter returns a pointer
   to the character following the token  */
   p = strtok(NULL, ",");
   if (p)   printf("%s\n", p);
   return 0;
}
 
 
 

函式名: strtol
功  能: 將串轉換為長整數
用  法: long strtol(char *str, char **endptr, intbase);
程式例:

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

int main(void)
{
   char *string = "87654321", *endptr;
   long lnumber;

   /* strtol converts string to long integer  */
   lnumber = strtol(string, &endptr, 10);
   printf("string = %s  long = %ld\n", string, lnumber);

   return 0;
}
 

函式名: strupr
功  能: 將串中的小寫字母轉換為大寫字母
用  法: char *strupr(char *str);
程式例:

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

int main(void)
{
   char *string = "abcdefghijklmnopqrstuvwxyz",*ptr;

   /* converts string to upper case characters */
   ptr = strupr(string);
   printf("%s\n", ptr);
   return 0;
}
 
 
 

函式名: swab
功  能: 交換位元組
用  法: void swab (char *from, char *to, intnbytes);
程式例:

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

char source[15] = "rFna koBlrna d";
char target[15];

int main(void)
{
   swab(source,target, strlen(source));
   printf("Thisis target: %s\n", target);
   return 0;


相關推薦

C語言函式用法大全

轉自:http://wenku.baidu.com/link?url=P93oEpEQx6B_KtTPp6EKZQSayhVLJrNrprvhxLlo4dc3XONd3F8TSUMrpXn-4nhuJWex9mf1Q8n9hC8pwa25VcMyUoWuHiPsLF9F2

C語言函式操作大全----(超詳細)

fopen(開啟檔案)相關函式 open,fclose 表頭檔案 #include<stdio.h> 定義函式 FILE * fopen(const char * path,const char * mode); 函式說明 引數path字串包含欲開啟的檔案路徑及

pow函式(數學次方)在c語言用法,兩種編寫方法例項( 計算1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 的值)

關於c語言裡面pow函式,下面借鑑了某位博主的一篇文章: 標頭檔案:#include <math.h> pow() 函式用來求 x 的 y 次冪(次方),x、y及函式值都是double型 ,其原型為:    double pow(double x, double y

C語言】實際專案開發過程中常用C語言函式的9大用法

C語言是當中最廣泛的計算機程式語言,是所有計算機程式語言的祖先,其他計算機程式語言包括當前流行的Java語言,都是用C語言實現的,C語言是程式設計效率最高的計算機語言,既能完成上層應用開發,也能完成底層硬體驅動程式設計,在計算機程式設計當中,特別是在底層硬體驅動開發當中,具有不可替代的作用。

C語言 函式指標 函式指標陣列的用法

前述:C語言的奧祕,博大精深,今天來回憶的分析函式指標,函式指標陣列的用法。具體請見下面一個註冊程式的實現。     1 #include <stdio.h> 2 #include &

C語言~巨集操作大全(巨集定義、內建巨集、__FILE__、__LINE__、##用法

當然巨集定義非常重要的,它可以幫助我們防止出錯,提高程式碼的可移植性和可讀性等。 下面列舉一些成熟軟體中常用得巨集定義 1,防止一個頭檔案被重複包含 #ifndef COMDEF_H #define COMDEF_H //標頭檔案內容 … #endif

C語言函式fread() , fwrite() ,fseek()用法分析

網上已經有不少關於c語言函式fread() 和fwrite() 用法分析的文章,在此將這兩個函式的用法寫下來,是為了鞏固所學,加深印象,也為了日後方便查詢複習比較,如果能幫助到某些朋友,則是意外的驚喜。 fwrite()函式的意義是將某二進位制資料寫到指定的 檔案流。函式的

C語言 函式返回一位陣列,二維陣列

方法一: 萬能的結構體:構造陣列的結構體,將函式型別定義為此型別 但是考試的時候應該不太方便寫結構體,寫不下也會很麻煩,故介紹方法二 方法二: 指標傳遞: 1、返回一維陣列 例子:將陣列每一位加一: #include<stdio.h> #define N 10 int

c語言 函式遞迴的簡單應用

       利用函式遞迴來時現將一個sh數的每一位拆出來然後求和,即是:例如一個shu數  1888;它的每一位sh是 1  8  8   8,而每一位的每一位的和最終是  25,而接下來jian建立用函式的

c語言函式lseek函式

原文連結:http://c.biancheng.net/cpp/html/236.html 相關函式:dup, open, fseek 標頭檔案:#include <sys/types.h> #include <unistd.h> 定義函式:off_t l

C語言函式庫:動態連結庫與靜態連結庫

首先,函式庫就是一些事先寫好的函式的集合,是別人分享的,我們可以拿來使用的。經過一些校準和整理,就形成一份標準化的函式庫。例如glibc 函式庫有兩種提供形式:動態連結庫與靜態連結庫 早起函式庫裡的函式都是直接共享的,就是所謂的開源社群。後來函式庫商業化,就出現了靜態連結庫與動態連結庫。

c語言函式的運用

1.猜數字遊戲 將選單和執行猜數字的主體都用main函式以外的自定義函式編寫,再由main函式呼叫後,執行結果 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #incl

Linux下的C語言函式perror

perror的函式原型為`void perror(const char *s)` 這個函式會先輸出你傳給他的實參 s 所指的字串,後面再加上錯誤原因字串。此錯誤原因依照全域性變數errno 的值來決定要輸出的字串。 在庫函式中有個errno變數,每個errno值對應著以字串表示的錯誤型別。當

C語言函式的指標小練習

總時間限制:  1000ms   記憶體限制:  65536kB // 在此處補充你的程式碼 描述 程式填空,使得輸出結果為: 1,4,9,16,25,  h,e,l,l,o,!, #include <iostream

C語言 函式指標呼叫時加星號與不加星號?

函式指標在賦值以後,例如通過庫動態載入方式,然後在使用時,程式呼叫遇到了既加星號,也有不加星號的方式,因此有點疑惑。 先上例項,再作分析 #include <stdio.h> void myfun(void); int main(void) { void (*pf)(void); p

ubuntu下C語言函式傳參

在進行C語言程式設計時,有時候需要使用命令列傳參,下面對其進行一個分析。 int main(int argc,const char * agrgv[])   int argc 命令列引數個數(包含檔名)   const char* argv[] 指標陣列:將命

【轉載】C++ getline函式用法

https://www.cnblogs.com/xiaofeiIDO/p/8574042.html 摘要: 通過getline()函式一個小小的例項,那麼把getline()函式作為while的判斷語句會怎麼樣的呢! 就分析一下while(getline(cin,line)) (注意:這裡預設回車符停

c語言函式呼叫模型

對於記憶體四區不懂得戳這裡 記憶體講解 這篇文章需要知道記憶體四區的知識 首先分級呼叫函式 使需要的資料入棧 然後逐級出棧,返回數值,將棧區的記憶體進行釋放    在main函式執行完之前 fa fb 都可以呼叫ma

C/C++ assert()函式用法總結

轉自:https://www.cnblogs.com/lvchaoshun/p/7816288.html   assert巨集的原型定義在<assert.h>中,其作用是如果它的條件返回錯誤,則終止程式執行。 原型定義: #include <assert.

[轉]在C#中呼叫C語言函式(靜態呼叫Native DLL,Windows & Microsoft.Net平臺)

原文:https://blog.csdn.net/yapingxin/article/details/7288325   對於不太瞭解.Net的人,如果想要了解.Net,我必須給他介紹P/Invoke。P/Invoke是什麼呢?簡單地說,就是在.Net中呼叫原生代碼(Native code)的一