Warning

 

Close
Confirm Action

Are you sure you wish to do this?

Cancel Confirm
AR15.COM
10/7/2011 7:57:31 PM EDT
Anything at all.  I just need a quick C++ string.  Do it.  Thanks!

Oh, and tell me what it dies, too.  Thanks!  
10/7/2011 7:59:45 PM EDT
[#1]
You can fudge your way through the interview, but what will you do when you have to produce?
10/7/2011 8:00:11 PM EDT
[#2]


#include <iostream>

int main()
{
 std::cout << "Hello World!" << std::endl;
 return 0;
}


the function should be obvious even to the most casual observer.

ar-jedi
10/7/2011 8:00:22 PM EDT
[#3]
UP UP DOWN DOWN LEFT RIGHT LEFT RIGHT B A START
10/7/2011 8:01:09 PM EDT
[#4]
This is for a class, not an interview,

hang on a minute;



10/7/2011 8:01:55 PM EDT
[#5]
10 Print "I Lick ARFCOM"

20 goto 10

30 end
10/7/2011 8:03:28 PM EDT
[#6]
const string MyGradeAtTheEndOfThisTerm[5]={"F","F","F","F","F"};

eta: semicolon
10/7/2011 8:04:42 PM EDT
[#7]
I have a flash drive full of shit I passed a C++/ Alice class with,

Want some of it?
10/7/2011 8:14:32 PM EDT
[#8]
#include <iostream>
#include <string>
using namespace std;

int main()
{
string output = "Disengage!";
cout<<output;
return 0;
}