Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. void print()
  2. {
  3.     struct element *robot;
  4.     while (robot != NULL)
  5.         {
  6.             printf("%d\n", robot->value);
  7.             robot = robot -> next;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement