We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c79c3 commit 3239a90Copy full SHA for 3239a90
baka.c
@@ -0,0 +1,21 @@
1
+#include <stdio.h>
2
+#include <stdlib.h>
3
+#include <string.h>
4
+int baka();
5
+int main(){
6
+ //char str1[20]="114514";
7
+ //char *str2 ="1919810";
8
+ //char str3[]= *str2;
9
+ //printf("%s\n%s\n",&str1,str2);
10
+ //strcpy(str1,str3);
11
+ //printf("strcpy(str1,str3):%s\n",str3)
12
+ baka();
13
+}
14
+
15
+int baka(){
16
+ char saying1[99]="Baka,my Baka,I do love u so much. ";
17
+ char saying2[]="Pls take me away";
18
+ strcat(saying1,saying2);
19
+ printf("%s!\n",&saying1);
20
+ return 0;
21
0 commit comments