nsb

test.c

nsb
Jul 14th, 2011
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. #include "utils.h"
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdio.h>
  5.  
  6. int main(){
  7.     char first[] = "Hello!";
  8.     char * second;
  9.     cpy(&second, first);
  10.     printf("second: %s\n", second);
  11.     char * third;
  12.     cat(&second, " World!");
  13.     cpy(&third, second);
  14.     printf("third: %s\n", third);
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment