Advertisement
Guest User

Untitled

a guest
Feb 26th, 2021
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int Hello(){
  4.     return 233;
  5. }
  6.  
  7. char *World(){
  8.     char **r = malloc(sizeof(char *));
  9.     *r = "1234";
  10.     return *r;
  11. }
  12.  
  13. char *Test(char *str)
  14. {
  15.     return str;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement