Trade Off

supercalifragilisticexpialidocious

一个简单的C程序

嗯,我是一直喜欢C的,不过没勇气说我从事C方面的开发,因为C是需要很多技巧和底层技术的,我自知这方面的能力不足:(

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

void strcp(char*, char*);
int main()
{
char* s = "test string...";
char* t = malloc(strlen(s));
strcp(t, s);
printf("%s\n", t);
free(t);

return 0;
}

void strcp(char *s,char *t)
{
while(*s++ = *t++);

最漂亮的就是那句strcp的函数了,非常简洁好用:)

Comments