码迷,mamicode.com
首页 > 编程语言 > 详细

C语言问题集

时间:2014-05-26 17:07:52      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   a   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
征服C指针:P70<br>#include "stdio.h"
char *int_to_str(int int_value){
    static char buf[20];
    sprintf(buf,"%d",int_value);
    return buf;
}
 
int main(){
    
    char *str1,*str2;
    str1=int_to_str(5);
    str2=int_to_str(10);
    printf("str1..%s  ,str2..%s\n",str1,str2);
    printf("str1..%s  ,str2..%s\n",int_to_str(5),int_to_str(10));
    return 0;
}

 输出结果是

1 str1..10  ,str2..10
2 str1..5  ,str2..5

 

C语言问题集,布布扣,bubuko.com

C语言问题集

标签:style   c   class   blog   code   a   

原文地址:http://www.cnblogs.com/cc-jony/p/3752850.html

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