![]() |
Freethought & Rationalism ArchiveThe archives are read only. |
![]() |
#1 |
Senior Member
Join Date: Apr 2003
Location: Omaha, Nebraska
Posts: 503
|
![]()
Does anyone need a C++ programmer for a project. I want to excercise my knowledge so I don't forget everything, but I can't get motivated to do anything! Anyone need some help?
Jake |
![]() |
![]() |
#2 |
Veteran Member
Join Date: Dec 2002
Location: Colorado
Posts: 1,038
|
![]()
Hey Jake. What kind of stuff are you interested in programming? I've been working on a BASIC compiler in C++ for some time now (kind slowed down since of school, and I havn't picked up too much since summer).
|
![]() |
![]() |
#3 |
Senior Member
Join Date: Apr 2003
Location: Omaha, Nebraska
Posts: 503
|
![]()
Um, about anything actually. I have recently done a lot of stuff with SDL and I have a base engine with networking written for it. So a game shouldnt be too hard. I also have a basic isometric engine written, a map editor that can save maps and load them. um....... you need help with your BASIC compiler? (Though I don't know why you would want to make ANOTHER one ;-) )
Jake |
![]() |
![]() |
#4 |
Veteran Member
Join Date: Dec 2002
Location: Colorado
Posts: 1,038
|
![]()
Heh, there can never be too many BASIC's!
![]() |
![]() |
![]() |
#5 |
Contributor
Join Date: May 2002
Location: Saint Paul, MN
Posts: 24,524
|
![]()
Just a side note: Don't muck about with assembly if you don't *REALLY REALLY REALLY* need to.
If you don't know your compiler's setup well enough to know how to get data out of it, you probably don't need to be using assembly at all. Anyway, if you want a project, don't start your own from scratch; get an open source project that's lagging and work on it. |
![]() |
![]() |
#6 | |
Veteran Member
Join Date: Aug 2000
Location: Colorado Springs
Posts: 6,471
|
![]() Quote:
d |
|
![]() |
![]() |
#7 | |
Senior Member
Join Date: Apr 2003
Location: Omaha, Nebraska
Posts: 503
|
![]() Quote:
Jake |
|
![]() |
![]() |
#8 |
Veteran Member
Join Date: Dec 2002
Location: Colorado
Posts: 1,038
|
![]()
Thanks for the replys. The only reason im using assmebly is since I have to (the compiler goes from my BASIC to a intermediate code to x86).
|
![]() |
![]() |
#9 |
Veteran Member
Join Date: Apr 2002
Location: Melbourne, Australia
Posts: 1,805
|
![]()
Oh man, where were you when I was doing my last couple of C++ assignments!
![]() ![]() I still don't understand friggin' pointers. *, **, &, && - WTF does it all mean??? AHHHGGG!!! |
![]() |
![]() |
#10 | |
Veteran Member
Join Date: Jul 2002
Posts: 1,288
|
![]() Quote:
Code:
#include <stdio.h> int main() { int *ptr; int var1=4; ptr=&var1; /*Stores the memory location where var1 is to ptr*/ if (ptr!=NULL&&var1>0) { /*If the memory location isn't NULL and the integer is greater than 0. (&& has nothing to do with pointers.)*/ *ptr=*ptr+1; /*Add 1 to the data at the location pointed to by ptr and store it back to that same location.*/ } printf("var1: %i\n&var1: %i\nptr: %i\n*ptr: %i\n",var1,&var1,ptr,*ptr); /*Print values of variables. If you run the program, that line will help you understand what's happening.*/ return 0; } |
|
![]() |
Thread Tools | Search this Thread |
|