Advertisement
alexarcan

append 1 character to the end of a string

Feb 14th, 2014
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3. #include<ctype.h>
  4. #include<stdlib.h>
  5.  
  6. char* f(char *s,char c)
  7. {
  8.   int len=strlen(s);
  9.   s[len]=c;
  10.   s[len+1]='\0';
  11.  
  12.   return s;
  13.  
  14. }
  15.  
  16.  
  17.  
  18. int main(void)
  19. {
  20.  char s[20]="Gummybear";
  21.  char c='S';
  22.  puts(f(s,c));
  23.  
  24.  
  25.  
  26.  
  27.   return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement