Skip to content

Commit

Permalink
Update ex6_25_26.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
shbling committed Nov 13, 2014
1 parent 5b15a46 commit 660024f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ch06/ex6_25_26.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
#include <iostream>
#include <string>

int main(int _argc, char **_argv)
int main(int argc, char **argv)
{
std::string str;
for (int i = 1; i != _argc; ++i)
for (int i = 1; i != argc; ++i)
{
str += _argv[i];
str += argv[i];
str += " ";
}

Expand Down

0 comments on commit 660024f

Please sign in to comment.