Top.Mail.Ru
The C++ Community's Journal -- Day
? ?
The C++ Community's Journal -- Day [entries|friends|calendar]
The C++ Community

[ userinfo | livejournal userinfo ]
[ calendar | livejournal calendar ]

Why is it repeating? [29 May 2003|10:57am]
#include{iostream.h)
int main()
{
char line[12];
char line2[6];

cout ltlt "Enter the first string: " ltlt endl;
cin.getline(line,12);
cout ltlt "Enter the 2nd string: "ltlt endl;
cin.getline(line2,6);

{
for(int i = 0; line[i] != '\0'; ++i)

for(int j = 0; line2[j] != '\0'; ++j)
cout ltlt line ltlt line2;
}
return 0;
}


inputing: hello and then world

why am i repeating?
(lt= less than)
18 comments|post comment

navigation
[ viewing | May 29th, 2003 ]
[ go | previous day|next day ]
Image