fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. struct cliente{
  6. string Nombre;
  7. long long ID;
  8. long long Balance;
  9. string Direccion;
  10. };
  11.  
  12. int main() {
  13. cliente yo;
  14. yo.Nombre = "Simón";
  15. yo.ID = 1234;
  16. yo.Balance = 4321;
  17. yo.Direccion = "Cordoba 680";
  18. cout<<yo.Direccion;
  19. return 0;
  20. }
Success #stdin #stdout 0s 4524KB
stdin
Standard input is empty
stdout
Cordoba 680