Forum: C++ Apr 16th, 2009 |
| Replies: 14 Views: 530 What do you think the code is doing? Add some comments. |
Forum: C++ Apr 16th, 2009 |
| Replies: 29 Views: 1,398 Errr, ignore that last part. Sometimes I'm unclear.
Student student;
for(int subject = 0; subject < 4; subject++){
string code;
int cu;
char pass_or_fail;
inFile >> code;
... |
Forum: C++ Apr 10th, 2009 |
| Replies: 7 Views: 884 Hey guys,
I was wondering, with this code:
main.cpp
#include <iostream>
using namespace std;
class car { |
Forum: C++ Jan 3rd, 2009 |
| Replies: 5 Views: 314 Here are two examples I created and use as a reference, maybe they are of help:
/*
** Playing around with WinSockets
*/
#include <stdio.h>
#include <winsock.h> |