Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.     char **test;
  5.     char *string="teststring";
  6.  
  7.     test = &string;
  8.  
  9.     printf("%s\n", *test);
  10. }
  11.  
  12. //output: teststring
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement