namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:beispiel:struct

Beispiel struct

struct.cpp
#include <iostream>
#include <iomanip>
 
struct Anschrift
{
  char ort[40];
  int  plz;
};
 
int main()
{
  Anschrift x = { "Dresden", 1217 };
 
  // printf("%05d %s\n", x.plz, x.ort);  in C ...
 
  char oldfill = std::cout.fill();
  std::cout << std::setw(5) << std::setfill('0')
            << x.plz << ' ' << x.ort << '\n';
  std::cout.fill(oldfill);
}
kennen/beispiel/struct.txt · Zuletzt geändert: 2017-04-19 21:39 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki