Rainbow-Lostyuelostyue.blog.chinaunix.net
lostyue
全部博文(75)
2011年(53)
2010年(22)
noiplee
小雅贝贝
yangjian
wb123456
cynthia
格伯纳
wozaixin
u0402
18698645
qq110944
mordorww
分类: C/C++
2010-12-21 21:51:44
#include <stdio.h>#include <stdlib.h>int *a();char *b();int *aa();int main(void){ int *p = a(); int i; for(i = 0; i < 5; i++) printf("%d ", p[i]); return 0;}int *a(){ int p[] = {1,2,3,4,5}; return p;}char *b(){ char *s = "test"; return s;}int *aa(){ int *a = malloc(sizeof(int)); *a = 10; return a;}
上一篇:字符与编码
下一篇:happyness 2
登录 注册