diff options
Diffstat (limited to 'testapp/docs/hello_name.c')
-rw-r--r-- | testapp/docs/hello_name.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testapp/docs/hello_name.c b/testapp/docs/hello_name.c new file mode 100644 index 0000000..8fa2519 --- /dev/null +++ b/testapp/docs/hello_name.c @@ -0,0 +1,16 @@ +#include<string.h> +#include<stdio.h> + +char *message(char a[]) +{ + return (strcat("hello",a)); +} + +main() +{ + printf("he\n"); + char q[]="re"; + char s[20]; + s= message(q); + printf("%s",s); +} |