Advertisement
Guest User

main.c

a guest
Jan 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "kalkulator2.h"
  4. #include <ctype.h>
  5.  
  6.  
  7. int main ()
  8. {
  9. t_elem *stos=NULL;
  10. //char oper=' ';
  11. //int element;
  12. //int arg1, arg2;
  13.  
  14. push(&stos, 7);
  15. print(&stos);
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement