Skip to content

Instantly share code, notes, and snippets.

@michaels123
Created September 21, 2018 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaels123/427ecf63871f20bd2453983097762da7 to your computer and use it in GitHub Desktop.
Save michaels123/427ecf63871f20bd2453983097762da7 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
int main ()
{
std::string Produkte[3];
Produkte[0] = "Messer";
Produkte[1] = "Teller";
Produkte[2] = "Tasse";
std::cout << Produkte[0] << std::endl;
std::cout << Produkte[1] << std::endl;
std::cout << Produkte[2] << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment