Advertisement
Guest User

strcat

a guest
Jul 3rd, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main(void)
  5. {
  6.   char string1[50]="Aku mencintaimu ";
  7.   char string2[50]="dengan tulus";
  8.  
  9.   strcat(string1,string2);
  10.  printf("%s",string1);
  11.   return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement