C语言 日常小结

Posted 庖丁解牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言 日常小结相关的知识,希望对你有一定的参考价值。

1.当数组当作函数参数的时候会退化为指针

技术分享
#include<stdio.h>
#include<stdlib.h>

void sort(int a[]){
    int num = sizeof(a);
    printf("数组的大小num=%d\n", num);//打印4,此时a是一个指针
    //打印数组
    for (int i = 0; i < 10; i++)
    {
        printf("%5d", a[i]);
    }
}

void main(){
    int a[10] = {4,3,8,5,1,7,2,9,0,6};
    sort(a);
    system("pause");
}
View Code

 

以上是关于C语言 日常小结的主要内容,如果未能解决你的问题,请参考以下文章

C语言代码片段

非后端开发Mysql日常使用小结

landaray4.13到5.6号小结

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段

使用c语言调用python小结