0
点赞
收藏
分享

微信扫一扫

C小练习-函数的作用域

年夜雪 2022-01-23 阅读 37
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int num1 = 9;
    {
        //代码块
        int num2 = 90;
        printf("%d\n",num1 + num2);
    }
    return 0;
}

 

举报

相关推荐

0 条评论