sprintf,求字符串长度

简介:  int sprintf( char *buffer, const char *format[, argument]... ); buffer:Storage location for output 存储位置 format:Format-control string :格式化控制的字符串 argument:Optional arguments

  1. int sprintf( char *buffer, const char *format[, argument]... );

buffer:Storage location for output 存储位置

format:Format-control string :格式化控制的字符串

argument:Optional arguments :可选的参数

#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>

#include<stdlib.h>

#include <string.h>

 

void main()

{

    char str[100] = { 0 };

    char op[30] = { 0 };

    scanf("%s", op);

    //sprintf的作用是通过格式化的方式将内容写到字符串中

    sprintf(str,"taskkill /f/im %s",op);

 

    system(str);

    system("pause");

}

Sprintf案例2

  1. 求字符串的长度

3.通过goto的方式实现求字符串的长度

4.通过递归的方式实现求字符串的长度

5.字符串查找

char *strstr( const char *string, const char *strCharSet);

Each of these functions returns a pointerto the first occurrence of strCharSet in string, or NULLif strCharSet does not appear in string. If strCharSetpoints to a string of zero length, the function returns string.

说明:意思是说,返回的是字符串第一次出现的指针位置。

 

#include <stdio.h>

#include<stdlib.h>

 

int main(int argc, char *argv[])

{

    char str1[100] = "my name is toto";

    char str2[30] = "name";

    char *p = strstr(str1,str2);

    if (p == NULL)

    {

        printf("没有找到");

    }

    else

    {

        printf("找到%p,%c",p,*p);

    }

 

    getchar();

    return 0;

}

目录
相关文章
|
8月前
|
存储 C语言
【我爱C语言】详解字符函数isdigit和字符串转换函数(atoi和snprintf实现互相转换字符串)&&三种strlen模拟实现2
【我爱C语言】详解字符函数isdigit和字符串转换函数(atoi和snprintf实现互相转换字符串)&&三种strlen模拟实现
|
8月前
|
C语言
字符串函数`strlen`、`strcpy`、`strcmp`、`strstr`、`strcat`的使用以及模拟实现
字符串函数`strlen`、`strcpy`、`strcmp`、`strstr`、`strcat`的使用以及模拟实现
154 1
|
3月前
解析与模拟常用字符串函数strcpy,strcat,strcmp,strstr(一)
解析与模拟常用字符串函数strcpy,strcat,strcmp,strstr(一)
54 0
|
8月前
|
Java 编译器 C语言
深入了解字符(串)函数 -- -- 字符(串)函数的实现(strlen、strcpy、strcmp、strcat、strstr、)内存函数的实现(memcpy、memmove)
深入了解字符(串)函数 -- -- 字符(串)函数的实现(strlen、strcpy、strcmp、strcat、strstr、)内存函数的实现(memcpy、memmove)
54 0
|
8月前
|
存储 C语言
【我爱C语言】详解字符函数isdigit和字符串转换函数(atoi和snprintf实现互相转换字符串)&&三种strlen模拟实现1
【我爱C语言】详解字符函数isdigit和字符串转换函数(atoi和snprintf实现互相转换字符串)&&三种strlen模拟实现
C实现字符操作函数,strcpy, strcat, strcmp, memcpy
C实现字符操作函数,strcpy, strcat, strcmp, memcpy
66 0
|
8月前
|
C语言
深入理解字符串函数和字符函数(islower和isupper、tolower和toupper、strlen、strcpy、strcat、strcmp)(一)
深入理解字符串函数和字符函数(islower和isupper、tolower和toupper、strlen、strcpy、strcat、strcmp)(一)
|
8月前
|
C语言
深入理解字符串函数(strstr、strtok、strerror)(二)
深入理解字符串函数(strstr、strtok、strerror)(二)
字符串函数strncmp
字符串函数strncmp
134 1
字符串函数__strlen()
strlen()计算的是字符串的长度的,引用的头文件是#include<string.h>