Skip to content

Commit

Permalink
fixed 6_25_26
Browse files Browse the repository at this point in the history
  • Loading branch information
pezy committed Jun 28, 2015
1 parent aae117b commit a155d5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ch06/ex6_25_26.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
int main(int argc, char** argv)
{
std::string str;
for (int i = 1; i != argc; ++i) str += argv[i] + " ";
for (int i = 1; i != argc; ++i) {
str += argv[i];
str += " ";
}

std::cout << str << std::endl;
return 0;
Expand Down

0 comments on commit a155d5b

Please sign in to comment.