Skip to content

Instantly share code, notes, and snippets.

@michaels123
Created September 21, 2018 13:27
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/8aa45733146bba897c8ebed7054d6d8c to your computer and use it in GitHub Desktop.
Save michaels123/8aa45733146bba897c8ebed7054d6d8c to your computer and use it in GitHub Desktop.
#include <iostream>
int main ()
{
int a = 5;
std::cout << "Wert nach der ersten Zuweisung: " << a << std::endl;
a = 43;
std::cout << "Wert nach der zweiten Zuweisung: " << a << std::endl;
a = 7;
std::cout << "Wert nach der dritten Zuweisung: " << a << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment