GIDForums  

Go Back   GIDForums > Computer Programming Forums > C++ Forum
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #1  
Old 24-Mar-2003, 08:11
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough

Question about C and C++


I have two question about C/C++. First what is the difference in C and C++ and then second does anyone know of a free compiler that will work on a soruce code that was dev with Visual C++ 6.0?

Thanks
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
Last edited by pcxgamer : 24-Mar-2003 at 09:03.
  #2  
Old 24-Mar-2003, 08:56
Garth Farley Garth Farley is offline
Invalid Email Address
 
Join Date: May 2002
Location: Ireland
Posts: 638
Garth Farley is a jewel in the roughGarth Farley is a jewel in the roughGarth Farley is a jewel in the rough
C++ is an extension of C, including OOP, exception handling, templating and a much improved IO system. Notice the ++, the increment operator to increment the C functionality??? Geez these techies just crack me up??:

I'm afraid that I don't know about Visual C++ compatible compiler. I use a g++ compatible one.

Garth Farley
  #3  
Old 24-Mar-2003, 09:02
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
Thanks. I think that I may have to suck it up and buy a compiler. I have found one free one but it only compiles c to .net. But I think the Visual C++ .net is only like 90 USD for the standard. Do you happen to know if there is a difference in the compiler for the Standard version VS the Professional version?
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
Last edited by pcxgamer : 24-Mar-2003 at 09:08.
  #4  
Old 24-Mar-2003, 10:33
Garth Farley Garth Farley is offline
Invalid Email Address
 
Join Date: May 2002
Location: Ireland
Posts: 638
Garth Farley is a jewel in the roughGarth Farley is a jewel in the roughGarth Farley is a jewel in the rough
Nope, I wouldn't have a clue. But don't you get a GUI for WYSIWYG window design, and it probably includes a huge propietry library. Professional editions (I know from Java anyway) usually include a database and internet widgets that the Standard user will miss terribly, and consider the upgrade.

Just my 2 cents.

GF
  #5  
Old 24-Mar-2003, 11:11
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
All stuff I need to think about be for I spend any money. Well I'm not sure what I will do. Thank you for your thoughs on this and for the help.
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #6  
Old 24-Mar-2003, 11:22
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough
Can I get off-topic?

What did you write in C++ so far? I am dying to know. I still haven't finished reading the first chapter yet!
  #7  
Old 24-Mar-2003, 11:42
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
not much a few beginnier programs but I'm putting in a lot of time on it. Most of the time I've been going though soruce code and trying to get a feel for what it looks like.
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #8  
Old 24-Mar-2003, 13:20
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
Jds,
are you still learning C++? have you tried any coding yet?
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #9  
Old 24-Mar-2003, 13:34
Garth Farley Garth Farley is offline
Invalid Email Address
 
Join Date: May 2002
Location: Ireland
Posts: 638
Garth Farley is a jewel in the roughGarth Farley is a jewel in the roughGarth Farley is a jewel in the rough
Have either of you?

I am interested in how you both are getting on with it. I've only been learning it in Uni for the last 8 months (we did C last year), and we've just done the main syntax, written our own classes (we've made our own copies of the main classes: stacks, linked-lists - no nice auto-expanding arrays like in PHP, trees, strings and overflow-proof int and double classes), and have done a few algorithmic tests.

If you're feeling up to it, try making a calculator program! Takes a mathematical string and gives you the answer. We did it in November I think, and it was tough. Thee's no eval() function in C++, you've to parse through the string, look for parenthesis, then operators (keeping note of precedence), then push the numbers onto one a stack in order, with the operators onto another, then pop each operator off & apply it to the top 2 elements of the number stack, then push the result back onto the number stack. Nasty, eh?

Garth Farley
  #10  
Old 24-Mar-2003, 14:14
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
Oh my I think I will try that but be warned I almost started pulling my hair out reading that.
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
 
 

Recent GIDBlogFlickr uploads of IA pictures by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
video editing question Kris Computer Software Forum - Windows 8 13-Apr-2005 18:22
a C input question.. tmike C Programming Language 2 19-Sep-2003 02:39
a C input question tmike C Programming Language 1 16-Sep-2003 02:31
a noobish compiler question Charunks C++ Forum 5 03-Sep-2003 02:18
Mozilla TARGET question nickbeee Web Design Forum 2 03-Aug-2002 03:57

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 21:17.


vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.