文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>c99函数的嵌套定义

c99函数的嵌套定义

时间:2010-06-13  来源:dolinux

c99标准中支持函数嵌套定义,做个小测试:

/*
 * Copyright (c) 2010--Meng Along
 *
 * The source code is released for free distribution under the terms of the GNU General Public License
 *
 *
 * Author: Meng Along<[email protected]>
 * Created Time: 2010年06月13日 星期日 09时10分30秒
 * File Name: std.c
 * Description:
 * 测试c99中的函数嵌套定义
 */

#include <stdio.h>
#include <stdlib.h>

int fun1(void);
int main(int argc, char *argv[])
{
    fun1();
    return 0;
}

int fun1(void)
{
    printf("in fun1!\n");

     void fun2(void) {
        printf("in fun2!\n");
    }
    fun2();
    return 0;
}



$ gcc -std=c99 -o std std.c
$ ./std

in fun1!

in fun2!



相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载