Advertisement
tyler569

Untitled

May 1st, 2020
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. <html>
  3. <include href="/stdio.h" />
  4. <include href="/stdint.h" />
  5.  
  6. <func return="int" name="main">
  7. <param type="int" name="argc" />
  8. <param type="* * char" name="argv" />
  9.  
  10. <declare type="int" name="x" />
  11. <assign var="x">
  12. <value type="int">
  13. 10
  14. </value>
  15. </assign>
  16.  
  17. <call function="printf">
  18. <arg type="* char">%i\n</arg>
  19. <arg>x</arg>
  20. </call>
  21. </func>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement