码迷,mamicode.com
首页 > 其他好文 > 详细

函数调用

时间:2017-05-08 19:59:25      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:char   ram   his   声明   user   this   include   etc   logs   

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

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

void print_my_name();//函数声明 ,尽量每个函数都要声明,养成好习惯 
int main(int argc, char *argv[]) 
{
    printf_my_name();//调用子函数 
        return 0;
}

//子函数定义
void printf_my_name()
{
    printf("kinson");
} 

 

函数调用

标签:char   ram   his   声明   user   this   include   etc   logs   

原文地址:http://www.cnblogs.com/kinson/p/6826904.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!