Skip to content

Commit

Permalink
huch ist mir ein fehler durchgerutscht
Browse files Browse the repository at this point in the history
  • Loading branch information
fschledorn committed Sep 17, 2024
1 parent 8967bd9 commit 6625b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ int main() {
std::cout << "An Index 99 steht " << einvector[99] << std::endl;

// und nun alle werte auf 42 setzen ;-)
i = 0;
int i = 0;
while (i < einvector.size()) {
einvector[i] = 42;
i = i + 1;
Expand Down

0 comments on commit 6625b78

Please sign in to comment.