你好

文章目录

###Hello Octopress!

这是我的第一篇 Octopress 博客,欢迎大家光临。

这两天天气不好,大家注意身体。

1
2
3
4
5
int main() {
NSLog("hello world");
NSString *string = [[NSString alloc] init];
return 0;
}
1
2
3
4
5
int main(){
NSLog("Hello world");
NSString *string = [[NSString alloc] init];
return 0;
}

用这个方法

1
alloc

来开辟内存地址

用这个方法

1
alloc

你好啊

hello worldlink
1
2
3
int main() {
printf("hello world");
}