473,382 Members | 1,424 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Visual Studio Help


Help! I am looking to download an evaluation version of Microsoft Visual
Studio 6.0 to practice some C++ programming or alternatively a similar
program which is easy to use and learn basic C++ on. Can anyone point me in
the right direction please?
--

..... and then he stuck a G.I. Joe up his ass!


Jul 19 '05 #1
11 4929

"Goonigooguu" <he***************@btconnect.com> wrote in message
news:bg**********@hercules.btinternet.com...

Help! I am looking to download an evaluation version of Microsoft Visual
Studio 6.0 to practice some C++ programming or alternatively a similar
program which is easy to use and learn basic C++ on. Can anyone point me in the right direction please?


There is no such thing. You could download a complete version of gcc (a much
better C++ compiler than Visual Studio 6) for free from here www.cygwin.com.

john
Jul 19 '05 #2

"John Harrison" <jo*************@hotmail.com> wrote in message
news:bg************@ID-196037.news.uni-berlin.de...

"Goonigooguu" <he***************@btconnect.com> wrote in message
news:bg**********@hercules.btinternet.com...

Help! I am looking to download an evaluation version of Microsoft Visual
Studio 6.0 to practice some C++ programming or alternatively a similar
program which is easy to use and learn basic C++ on. Can anyone point me in
the right direction please?


There is no such thing. You could download a complete version of gcc (a

much better C++ compiler than Visual Studio 6) for free from here www.cygwin.com.
john


or get a free alternative,dev-c++, which uses the MingW compiler, a windows
port of gcc for a more 'friendly' environment for windows. comes with
windows headers too, allowing you to program win32 apps.

dev-c++: http://www.bloodshed.net/dev/devcpp.html

slick_shoes
Jul 19 '05 #3
Dev-C++ is definitely something you should check out. The fact that it comes
with an IDE is great. GCC (MinGW) is an excellent compiler.

Another possibility is Digital Mars which I currently use for Win32
(windows) stuff:
http://www.digitalmars.com

If you want another old-school compiler, like Digital Mars (which was
Symantec), get the free Borland compiler. Note that it does not come with an
IDE:
http://www.borland.com

IDE stands for Integrated Development Environment. It is also sometimes
called an IDDE, when appropriate, for Integrated Development and Debugging
Environment. Most good IDE's have syntax highlighting for special keywords
and code completion.

If you choose a compiler that has no IDE or don't care to use their's, you
can always try SourceEdit: http://www.sourceedit.com

Good luck!

--

Regards,
Greg P.

Golden Rule of Open Source Programming:
"Don't whine about something unless you plan to implement it yourself"
Jul 19 '05 #4
The free Borland 5.5 compilor is not a quick download, you have to
follow these instuctions to install it:
http://csjava.occ.cccd.edu/~gilberts/bcc55.html
VIDE is a good IDE to use with the Borland 5.5 compiler. Its supposed
to work just by typing in the dictory path c:\Borland\bcc55 into the
options>VIDE dialog, but I havent been able to get it to work.
Jul 19 '05 #5
Victor- Im just starting out in programming and so still qualify as a
computer dummy. So just because I didnt get it to work doesnt mean it
doesnt work (the problem might be with my comp). Lets make clear that
Borland C++ 5.5 is a very good compiler that follows ANSI standards
closer than MS visual C++ (which doesnt even follow the current ANSI
standard). I dont imagine you would want to use this compiler with the
default command line interface, so getting an IDE and a debugger to
work with this compiler is neccesary for normal use. Heres a link
where you can download VIDE and theres a link at the bottom of the
page that gives instructions on how to set it up with Borland C++ 5.5:
http://www.objectcentral.com/vide.htm

If you "haven't been able to get it to work", how can it be
"a good IDE to use with the Borland 5.5. compiler"? In my book
inability to make something to work with something else is
a BAD THING(tm).

Victor

Jul 19 '05 #6
On 29 Jul 2003 17:44:14 -0700, na*********@yahoo.com (Arquebus257WeaMag) wrote:
Lets make clear that
Borland C++ 5.5 is a very good compiler that follows ANSI standards
That is incorrect.

closer than MS visual C++ (which doesnt even follow the current ANSI
standard).
That is incorrect.

I dont imagine you would want to use this compiler with the
default command line interface
That is incorrect.

so getting an IDE and a debugger to
work with this compiler is neccesary for normal use.


I suggest Dev++ IDE with MingW g++ compiler, both free.

Jul 19 '05 #7
"Alf P. Steinbach" <al***@start.no> wrote in message
news:3f****************@News.CIS.DFN.DE...
Lets make clear that
Borland C++ 5.5 is a very good compiler that follows ANSI standards


That is incorrect.

How so? I have used both MSVC and Borland (since early on) and noticed BCC
holding truer to the ANSI standard than VC (which requires some code
augmentation). From what I've heard, VC 7.1 is starting to fix this.
I dont imagine you would want to use this compiler with the
default command line interface


That is incorrect.

I agree with you on this. I enjoy using the console for compiling rather
than hitting some build button. But I'm also old-school.
so getting an IDE and a debugger to
work with this compiler is neccesary for normal use.


I suggest Dev++ IDE with MingW g++ compiler, both free.

I suggest this as well. GCC, IMHO, is much better than either bcc or msvc.
Either that or I am just too used to it.

Jul 19 '05 #8
"Goonigooguu" <he***************@btconnect.com> wrote...
Thanks all. Bloodsheds Dev-C++ works just fine but I do have other question. Usually is start my main() as follows without a return:

void main()
{
//code body
}

This causes a problem with Dev-C++ and I have to use:
int main()
{
//code body
system("PAUSE")
return 0;
}

Is this a problem or normal. Please explain in laymans terms. Thanks.


In layman's terms, 'void main' is non-standard. If you want to write
_correct_ C++, you should use 'int main'. "return 0;" is unnecessary
from the main function; it will return 0 by default. Some compilers
have a problem with that. It's up to you to decide to use those
compilers and to put up with their non-compliance.

Dev-C++ causes the executable window to close before you can see the
results. That is why you need to use 'system("PAUSE")', which is not
guaranteed to work on all systems anyway. It is up to you to use the
tools that you've chosen in the way that helps you do your work. It
has nothing to do with the language.

Victor
Jul 19 '05 #9
Thankx

--

..... and then he stuck a G.I. Joe up his ass!
"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vi************@corp.supernews.com...
"Goonigooguu" <he***************@btconnect.com> wrote...
Thanks all. Bloodsheds Dev-C++ works just fine but I do have other

question.
Usually is start my main() as follows without a return:

void main()
{
//code body
}

This causes a problem with Dev-C++ and I have to use:
int main()
{
//code body
system("PAUSE")
return 0;
}

Is this a problem or normal. Please explain in laymans terms. Thanks.


In layman's terms, 'void main' is non-standard. If you want to write
_correct_ C++, you should use 'int main'. "return 0;" is unnecessary
from the main function; it will return 0 by default. Some compilers
have a problem with that. It's up to you to decide to use those
compilers and to put up with their non-compliance.

Dev-C++ causes the executable window to close before you can see the
results. That is why you need to use 'system("PAUSE")', which is not
guaranteed to work on all systems anyway. It is up to you to use the
tools that you've chosen in the way that helps you do your work. It
has nothing to do with the language.

Victor

Jul 19 '05 #10
Goonigooguu wrote:
Thanks all. Bloodsheds Dev-C++ works just fine but I do have other question.
Usually is start my main() as follows without a return: 1. Don't top-post. Replies are either interspersed or appended
at the bottom.
void main()
{
//code body
}

This causes a problem with Dev-C++ and I have to use:
int main()
{
//code body
system("PAUSE")
return 0;
}

Is this a problem or normal. Please explain in laymans terms. Thanks.

As stated many times in this newsgroup and news:comp.lang.c,
the main() function returns an int. Always. No exception.
Anything else provokes undefined behavior. As to what normal
is, that is a misleading term.

The correct form for a minimalist C++ program is:
int main()
{
}

According to the standard, the main() function is the only
function that has a default return value. Constructors
are special functions that don't return values. Better
form for the main function is:
int main(void) // or (int, char **)
{
return EXIT_SUCCESS; // or EXIT_FAILURE
}

Read the FAQ and welcome.txt via the links below.

--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.raos.demon.uk/acllc-c++/faq.html
Other sites:
http://www.josuttis.com -- C++ STL Library book

Jul 19 '05 #11
Thomas Matthews wrote:
The correct form for a minimalist C++ program is:
int main()
{
}

According to the standard, the main() function is the only
function that has a default return value. Constructors
are special functions that don't return values. Better
form for the main function is:
int main(void) // or (int, char **)
The practice of using a 'void' argument list is meaningful in
C (do you know _why_ it is meaningful in C?).

It's not meaningful in C++.

It's not a good idea to use meaningless constructs, and so
this form is absolutely not "better" in C++: it is inferior.
{
return EXIT_SUCCESS; // or EXIT_FAILURE
}


This can be a good idea. Note: EXIT_SUCCESS is not predefined
in C++. It is defined by various header files.

Jul 19 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: angelag | last post by:
I am currently taking a college course in Visual Basic.Net and I am a beginner. I bought Visual Studio.Net 2003 to do my homework at home. I built my first project and e-mailed it to myself at...
0
by: Tom Lee | last post by:
Hi, I'm new to .NET 2003 compiler. When I tried to compile my program using DEBUG mode, I got the following errors in the C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7 \include\xdebug...
0
by: gerd | last post by:
Hello, I want to port an MFC Application from Visual Studio 6 MFC application to Visual C++ 2005 express edition beta. While building i get following error: ------ Build started: Project:...
0
by: gerd | last post by:
Hello, I want to port an MFC Application from Visual Studio 6 MFC application to Visual C++ 2005 express edition beta. While building i get following error: ------ Build started: Project:...
6
by: JonSteng | last post by:
..Net Visual Studio Professional 2003 Version 7.1.3088 ..Net Framework 1.1 SP1 Version 1.1.4322 IIS 5.1 Windows XP Professional SP2 Micron T3000 Laptop (1.5 GHz; 1GB RAM; 40GB HD with 17GB Free)...
0
by: fiona | last post by:
Innovasys Ltd., a leader in help authoring and documentation tools, today announced the inclusion of a tailored version of the Innovasys HelpStudio help authoring product, HelpStudio Lite, in the...
18
by: surfrat_ | last post by:
Hi, I am having the following problems in getting Microsoft Visual Studio 2005 Professional to link to an Access .mdb database. Please help me to sort this out. Problem 1: The Microsoft...
1
by: johnlim20088 | last post by:
Hi, Currently I have 6 web projects located in Visual Source Safe 6.0, as usual, everytime I will open solution file located in my local computer, connected to source safe, then check out/check in...
1
by: DR | last post by:
What ports do i need to unblock on client and server (running msvsmon.exe) to debug remotely from my client box with visual studio 2005 pro? When I attach to remote process a connection shows up...
0
jwwicks
by: jwwicks | last post by:
Introduction This tutorial describes how to use Visual Studio to create a new C++ program, compile/run a program, resume work on an existing program and debug a program. It is aimed at the...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.