Guest User

Untitled

a guest
Nov 18th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Summy.cpp
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Codigo.h"
  6.  
  7.  
  8. int _tmain(int argc, _TCHAR* argv[])
  9. {
  10. char * linea;
  11. linea = new char[100];
  12. cout << "Entre codigo:\n";
  13. cin.getline(linea, 100);
  14.  
  15. Codigo c(linea);
  16. c.analizador();
  17.  
  18. system("Pause");
  19. return 0;
  20. }
Add Comment
Please, Sign In to add comment