What is this maddness(cpp)
1
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;
}
41
Name:
Anonymous
2009-05-13 23:47
>>38
undefined reference to `getline'
Sepples wins again!
42
Name:
Anonymous
2009-05-13 23:50
>>41
error: 'string' was not declared in this scope
error: expected `;' before 'str'
error: 'cout' is not a member of 'std'
error: 'cin' is not a member of 'std'
error: 'str' was not declared in this scope
C wins again!
43
Name:
Anonymous
2009-05-14 0:44
>>42
you need to pass compiler options
44
Name:
Anonymous
2009-05-14 0:46
>>42
#include <stdio.h>
int main(){
char *str;
str = getline("Enter your family name: ");
return 0;
}
undefined reference to `getline'
45
Name:
Anonymous
2009-05-14 1:54
46
Name:
Anonymous
2009-05-14 3:39
>>37
This thread was only about Sepples
C89. Thread over.
47
Name:
Anonymous
2009-05-14 4:17
print "Enter your family name: ";
my $str = chomp;
48
Name:
Anonymous
2010-12-17 1:20
Are you GAY ?
Are you a NIGGER ?
Are you a GAY NIGGER ?
If you answered "Yes" to all of the above questions, then GNAA (GAY NIGGER ASSOCIATION OF AMERICA) might be exactly what you've been looking for!
49
Name:
Anonymous
2010-12-17 1:38
Erika once told me that Xarn is a bad boyfriend
50
Name:
Anonymous
2010-12-17 1:39
Erika once told me that Xarn is a bad boyfriend
51
Name:
Anonymous
2010-12-27 14:22