diff options
author | prathamesh | 2013-07-02 12:25:33 +0530 |
---|---|---|
committer | prathamesh | 2013-07-02 12:25:33 +0530 |
commit | 8a3016a88af5c4a09e8b5683f1e305e9100f3562 (patch) | |
tree | c5878e30b59ee084f6b5fd6c5f3e98a097e4960e /testapp/c_cpp_files/hello_name.c | |
parent | 33366bfa87d62d433cc7541e4699b61be78e5024 (diff) | |
download | online_test-8a3016a88af5c4a09e8b5683f1e305e9100f3562.tar.gz online_test-8a3016a88af5c4a09e8b5683f1e305e9100f3562.tar.bz2 online_test-8a3016a88af5c4a09e8b5683f1e305e9100f3562.zip |
c files moved
Diffstat (limited to 'testapp/c_cpp_files/hello_name.c')
-rw-r--r-- | testapp/c_cpp_files/hello_name.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/testapp/c_cpp_files/hello_name.c b/testapp/c_cpp_files/hello_name.c deleted file mode 100644 index 8fa2519..0000000 --- a/testapp/c_cpp_files/hello_name.c +++ /dev/null @@ -1,16 +0,0 @@ -#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); -} |