Advertisement
dzieciol

xxx

Apr 13th, 2016
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6.  
  7.  
  8. int main()
  9. {
  10. printf("Hello world!\n");
  11. return 0;
  12. }
  13. struct item{
  14. item *next;
  15. int x;
  16.  
  17. };
  18.  
  19.  
  20.  
  21. struct stack{
  22. item *head;
  23.  
  24. };
  25.  
  26. //void push (x){
  27. //if (!head){
  28.  
  29. //stack->x = x;
  30. //stack->next = &head
  31. //head=malloc(sizeof(item));
  32. //}
  33.  
  34.  
  35. //}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement