c語言學習筆記42

2021-07-14 06:04:33 字數 562 閱讀 3824

在某些場合,要求輸入乙個字串,如果是大小寫無關的,問題就來了,比如,在大小寫無關意義下,「ab」、「ab」、「ab」、「ab」都是等價的,這僅僅是兩個字母的情況,如果字母更多,情況更複雜,在程式中去一一判斷也很不現實,為此,c標準庫提供了字串處理函式strupr,用於將字串中所有的字母都轉換成大寫形式,其原型為;char* strupr(字串);

//自己編寫字串函式
//求長度
int mystrlen(char *p)

int length = 0;

if (p != '\0')//字串終止條件

return length;

}//複製

char *mystrcpy(char *dest, const char *source)//保證字元不被修改

char *destbak = dest;

while (*source != '\0')

dest = '\0';//末尾賦值為'\0'

return dest;

}

C語言學習筆記

include include void swap int p1,int p2 void swapa int arr,int n void printfa int arr,int n int main int argc,char argv swap i,j printfa array,6 swapa...

C語言學習筆記

file 結構 包含在stdio.h裡 ifndef file defined struct iobuf typedef struct iobuf file define file defined endif fread 功 能 從乙個流中讀資料 函式原型 size t fread void buf...

C語言學習筆記

我們學習c語言最開始入門的時候,都是先從c語言學習 c語言教材書籍開始學習,這些是我摘要的一些內容。第一章 c 語言概述 語言概述 1.1 物件導向程式設計基本概念 1.2 c 語言是一種物件導向的程式設計 語言 1.3 c 程式結構的特點 程式結構的特點 1.4 visual c 6.0簡介 簡介...