zoukankan      html  css  js  c++  java
  • sizeof与strlen

    #include <stdio.h>
    #include <string.h>
    #include<stdlib.h>
    void testArr(const char str[])
    {
    printf("%lu %lu ", sizeof(str), strlen(str));
    }
    int main(void)
    {

    char str[] = "hello";
    printf("test0 %lu %lu ", sizeof(str), strlen(str));


    char str1[8] = "hello";
    printf("test1 %lu %lu ", sizeof(str1), strlen(str1));


    char str2[] = { 'h','e','l','l','o' };
    printf("test2 %lu %lu ", sizeof(str2), strlen(str2));


    char *str3 = "hello";
    printf("test3 %lu %lu ", sizeof(str3), strlen(str3));


    char str4[] = "hello";
    testArr(str4);


    char str5[] = "hello";
    printf("test5 %lu %lu ", sizeof(str5), strlen(str5));


    char str6[10] = { 0 };
    printf("test6 %lu %lu ", sizeof(str6), strlen(str6));


    char str8[5] = { 0 };
    strncpy(str8, "hello", 5);
    printf("%s ", str8);
    system("pause");
    return 0;
    }

  • 相关阅读:
    LeetCode
    LeetCode
    LeetCode
    深度学习笔记 (二) 在TensorFlow上训练一个多层卷积神经网络
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
  • 原文地址:https://www.cnblogs.com/tiange-137/p/11919599.html
Copyright © 2011-2022 走看看