Alice Community

Alice Community (http://www.alice.org/community/index.php)
-   Questions and Comments (http://www.alice.org/community/forumdisplay.php?f=9)
-   -   Moving on (http://www.alice.org/community/showthread.php?t=7037)

belso 08-02-2011 03:02 PM

Moving on
 
Hello i have become proficient in alice over the years and i wish to learn c++. anyone know where i can download c++? Many thanks

legolizard 08-02-2011 04:01 PM

It depends there are many different IDE's and compilers, out there and it is a matter of preference as well as what OS you are using. For example if you are running a Mac then you need to find a Mac specific IDE. Personally I use Dev-C++,it is free,simple, runs on Windows, and the compiler is mostly standard, but again it is a matter of preference.

Anyways good luck in learning C++,I think you will find it relatively easy to get to understand, but if you need any help you can always ask me.:)

Dj Tech42 08-02-2011 04:11 PM

Xcode for Mac

belso 08-02-2011 09:21 PM

[QUOTE=legolizard;40167]It depends there are many different IDE's and compilers, out there and it is a matter of preference as well as what OS you are using. For example if you are running a Mac then you need to find a Mac specific IDE. Personally I use Dev-C++,it is free,simple, runs on Windows, and the compiler is mostly standard, but again it is a matter of preference.

Anyways good luck in learning C++,I think you will find it relatively easy to get to understand, but if you need any help you can always ask me.:)[/QUOTE]

Hey i use windows and i would like to use dev-c++ can you pass me a link? Thanks

legolizard 08-02-2011 09:39 PM

Here you go.[URL="http://www.bloodshed.net/devcpp.html"]http://www.bloodshed.net/devcpp.html[/URL]

belso 08-03-2011 03:32 AM

Thanks

Dj Tech42 08-03-2011 12:11 PM

I'm interested in learning C++ too. Can you post some tips later on?

We're stuck with C# at school. It's basically Microsoft-proprietary Java. ugh

legolizard 08-03-2011 12:50 PM

[QUOTE=Dj Tech42;40220]
We're stuck with C# at school. It's basically Microsoft-proprietary Java. ugh[/QUOTE]

Yeah, I don't really like C# either.

belso 08-07-2011 01:10 PM

!
 
Hey i have a c++ book and the starting is different in the book we still use the iostream and stuff but it has voidmain() which dosent work in this c++ so what do i use for this c++? Thank you

legolizard 08-07-2011 02:12 PM

This is because the C++ standard main() is of integer type not of [B]void[/B] type. Your book uses Microsoft's version of the main(), which is of course not standard and will [I]only work[/I] in compilers made by Microsoft say Microsoft Visual Studio, which I believe you must buy after a trial period. You can still use your book however replace:

[CODE]void main()
{
//Some code.....
}

[/CODE]

with:

[CODE]int main()
{
//Some code....
return 0;
}[/CODE]


All times are GMT -5. The time now is 08:37 PM.

Copyright ©2024, Carnegie Mellon University
Alice 2.x © 1999-2012, Alice 3.x © 2008-2012, Carnegie Mellon University. All rights reserved.