summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/hello_name.c
blob: 8fa2519b50e58dc8269eb5feffc3cd90c5c07dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
}