Name: Anonymous 2009-05-12 21:10
#include <iostream>
using namespace std;
int main(){
int i = 0;
loop:
cout << ++i << endl;
if(i<5)
goto loop;
}
#include <iostream>
using namespace std;
int main(){
int i = 0;
loop:
cout << ++i << endl;
if(i<5)
goto loop;
}
char str[80];
printf ("Enter your family name: ");
fgets (str, 80 , stdin);
string str;
std::cout << "Enter your family name: ";
std::cin >> str;