strnset()函數是C中的內置函數,它將字符串的前n個字符設置為給定字符。如果n大於字符串的長度,則使用字符串的長度代替n。
用法:
char *strnset(const char *str, char ch, int n);
參數:
- str:這是原始字符串,其中某些字符替換為給定字符。
- ch:ch代表給定的字符。
- n:n表示被給定字符替換的字符數。
返回值:返回替換第一個後獲得的修改後的字符串給定字符串的字符str。
以下示例程序旨在說明C語言中的strnset()函數:
程序1:
// C program to illustrate
// the strnset() function
#include <stdio.h>
#include <string.h>
int main()
{
char str[] = "GeeksforGeeks";
printf("Original String:%s\n", str);
// First 5 character of string str
// replaced by character '*'
printf("Modified String:%s\n", strnset(str, '*', 5));
return 0;
}
輸出:
Original String:GeeksforGeeks Modified String:*****forGeeks
程序2:
// C program to illustrate
// the strnset() function
#include <stdio.h>
#include <string.h>
int main()
{
char str[] = "Computer Science";
printf("Original String:%s\n", str);
// First 5 character of string str
// replaced by character '*'
printf("Modified String:%s\n", strnset(str, '*', 5));
return 0;
}
輸出:
Original String:Computer Science Modified String:*****ter Science
注意:strnset()函數不是標準C庫的一部分,因此可能無法在在線編譯器上運行。
相關用法
- C語言 tolower()用法及代碼示例
- C語言 strlwr()用法及代碼示例
- C語言 putchar()用法及代碼示例
- C++ iswpunct()用法及代碼示例
- C++ iswblank()用法及代碼示例
- C++ exp2()用法及代碼示例
- C++ raise()用法及代碼示例
- C++ feupdateenv()用法及代碼示例
- C++ towupper()用法及代碼示例
- C++ iswxdigit()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C++ atexit()用法及代碼示例
- C++ strcspn()用法及代碼示例
注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 strnset() function in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。