1、將乙個鍊錶逆序
linklist *reverse(linklist *head)
head->next = p2;
// head = p2;
return head;
}
2、計算乙個位元組裡(byte)裡面有多少bit被置1
#include int comb(const int c)
cc = cc>>1;
}return count;
}int main()
3、在乙個字串中找到可能的最長的子字串
#include #include #include char *commanstring(char shortstring,char longstring)
} return null;
}void main(void)
4、字串轉換為整數
#include #include void reverse(char s)
void main()
5、整數轉換為字串
#include #include int atoi(char str)
return rtn;
}void main()
6、將乙個字串逆序
#include #include char *strconv(char *p)
return p;
}int main()
C語言中的幾個重要函式
strcmp函式 比較字串 c c 函式,比較兩個字串,設這兩個字串為str1,str2,若str1 str2,則返回零 若str1str2,則返回正數。int strcmp const char str1,const char str2 return str1 str2 strcpy函式 複製字串...
C語言的重要概念
一 c語言的指標 1.指標說明 指標是包含另一變數的位址的變數。1 int p p是乙個指標,指向乙個整型數。2 int p p是乙個函式,該函式返回乙個指向整數的指標。3 int p p是乙個指標,該指標指向乙個函式,這個函式返回乙個整數。4 int p p是乙個陣列,該陣列的每乙個元素是指向整數...
C語言中的一些重要函式
1.字串複製函式 strcpy strcpny 標頭檔案 include 用法 strcpy 字串1,字串2 strcpny 字串1,字串2,n 作用 將字串2複製到字串1中 函式原型 char strcpy char dest,const char src char strcpny char de...