Preserved Topic: VC++ vs C++ (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: us |
posted 02-04-2001 16:37
does anyone know what the differences between c++ and vc++ are? I need to make dll's for games i make in directX in Visual Basic. |
Maniac (V) Mad Scientist From: Long Island, NY |
posted 02-04-2001 22:33
Now Im probably way off here but I was always under the impression that C++ was just the code, an Visual C++ was the software to actually make the code run and transform it into machine... |
Paranoid (IV) Inmate From: us |
posted 02-04-2001 22:43
I think they are different languages, but maybe they are similar. |
Maniac (V) Inmate From: soon to be "the land down under" |
posted 02-05-2001 08:54
If by vc++, you mean visual c++, jestah's right, Visual Studio is just another compiler like gnu or borland. It was specifically made for windows. A "normal" program in visual c++ links to a bunch of libraries needed to run in a windows environment. You can write code without these libraries, but it will run in a dos box. |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 02-05-2001 21:12 |
Bipolar (III) Inmate From: Ottawa, Ontario, Canada |
posted 02-05-2001 22:31
C# !? BWAHAHAHAHAHA!@#! |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 02-05-2001 22:37
[peer], C# is not a joke, believe me... |
Paranoid (IV) Inmate From: us |
posted 02-05-2001 23:34
i heard about c# a while ago, but i'll probably using vb6 and maybe visual c++ because i'm just a student, ya know i'm kinda short on the money thing. |
Paranoid (IV) Inmate From: Madison, Indiana, USA |
posted 02-05-2001 23:46
Viusal C++ is just MircoSoft's implementation of C++. As usual, they have add a few things they wanted and left out a few things they didn't want to impliment. |
Maniac (V) Inmate From: Seatte, Warshington, USA |
posted 02-06-2001 19:17
JakeB, you know you can write dll's in vb also. |
Paranoid (IV) Inmate From: us |
posted 02-06-2001 23:15
i didn't know you could. Are they faster if made with c? |
Maniac (V) Inmate From: Houston(ish) Texas |
posted 02-07-2001 00:05
Note that VB5 and later are much, much faster than previous incarnations of VB. It now compiles down to code that is comperable in speed to VC++ (not quite as fast, but close). You have to avoid using certain things in VB, though. VB string handling, for instance, is not very efficient at all. |