Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Is Visual C++ 2008 good for noobs?
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
famousmassacre1
Expert Cheater
Reputation: 0

Joined: 30 Jun 2008
Posts: 113
Location: San Antonio Texas

PostPosted: Fri Jul 11, 2008 9:10 pm    Post subject: Is Visual C++ 2008 good for noobs? Reply with quote

Please help i really want to learn this language
Back to top
View user's profile Send private message
kitterz
Grandmaster Cheater Supreme
Reputation: 0

Joined: 24 Dec 2007
Posts: 1268

PostPosted: Fri Jul 11, 2008 9:28 pm    Post subject: Reply with quote

Try editing your previous post. I think you already got a satisfactory answer.

Anyways, C++ is not a noob language. You have to learn. Nobody will spoon feed you.
Back to top
View user's profile Send private message Send e-mail
Flyte
Peanuts!!!!
Reputation: 6

Joined: 19 Apr 2006
Posts: 1887
Location: Canada

PostPosted: Fri Jul 11, 2008 9:31 pm    Post subject: Reply with quote

Depends on what you mean:

C++.NET - No, don't touch it ever.
C++ - Good for everyone.
Back to top
View user's profile Send private message
Chaosis13
Master Cheater
Reputation: 0

Joined: 14 Aug 2007
Posts: 372

PostPosted: Fri Jul 11, 2008 9:37 pm    Post subject: Reply with quote

Flyte wrote:
Depends on what you mean:

C++.NET - No, don't touch it ever.
C++ - Good for everyone.


lol, so true.
Back to top
View user's profile Send private message
EightfoldIllusion
Expert Cheater
Reputation: 0

Joined: 18 Feb 2008
Posts: 113
Location: If im logged on at my computer. If im logged of at my PS3.

PostPosted: Fri Jul 11, 2008 9:58 pm    Post subject: Reply with quote

Visual C++ is not a good thing for noobs to start in at all. It actually differs from plain C++ I believe but either way I'm having issues with it and I'm using pre written files.

Only reason I have it is to run my P-Server for Maple and thats it. But I cant even make a HelloWorld program without getting some bull crap error. Just stick to regular compiling. Or if you want use Microsoft Visual Basic it's alot simpler actually, most of the functions are drag and drop.

_________________
http://youtube.com/user/RiahCorp
http://youtube.com/user/KittyKatz
---------------------------------------+
Steam ID: LMS-RiahCorp
Back to top
View user's profile Send private message
famousmassacre1
Expert Cheater
Reputation: 0

Joined: 30 Jun 2008
Posts: 113
Location: San Antonio Texas

PostPosted: Fri Jul 11, 2008 10:05 pm    Post subject: Reply with quote

ok im sorry and i know C++ is not a noob language you should start on it when you have at least knowledge of easier languages like html and stuff i have a compiler but i um sorta dont know how to use it; its called Dev-C++ and whenever i try to make a hello world program and compile it it wont run and ive even tryed copying a hello world code and it still wont run
Back to top
View user's profile Send private message
Chaosis13
Master Cheater
Reputation: 0

Joined: 14 Aug 2007
Posts: 372

PostPosted: Fri Jul 11, 2008 10:33 pm    Post subject: Reply with quote

I recommend Dev-C++ for regular C++, and to make protable code. But VC++ to use new functions, and for easier GUI, but I like to just use WIN32 (When I can).

Also if you are having compiling trouble, I might be able to help.
Back to top
View user's profile Send private message
EightfoldIllusion
Expert Cheater
Reputation: 0

Joined: 18 Feb 2008
Posts: 113
Location: If im logged on at my computer. If im logged of at my PS3.

PostPosted: Fri Jul 11, 2008 11:27 pm    Post subject: Reply with quote

Simply put in my opinion VC++ is not for noobs, you need to know C++ already so do what Chaosis said jsut use Dev-C++ and learn the langauge then go onto using VC++ but I'm still unsure on one thing.

Are the langauges in VC++ and Regular C++ different in anyway as it feels they are to me. When I tried to make a Hello World Program in VC++ I got a weird error so I couldnt tell if I either failed at typing or the langauges were diffrent somehow.

_________________
http://youtube.com/user/RiahCorp
http://youtube.com/user/KittyKatz
---------------------------------------+
Steam ID: LMS-RiahCorp
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8588
Location: 127.0.0.1

PostPosted: Sat Jul 12, 2008 2:28 am    Post subject: Reply with quote

Chaosis13 wrote:
I recommend Dev-C++ for regular C++, and to make protable code. But VC++ to use new functions, and for easier GUI, but I like to just use WIN32 (When I can).

Also if you are having compiling trouble, I might be able to help.


There is no reason to touch DevC++ to do "regular C++" when Visual Studio can already do it.

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
jackyyll
Expert Cheater
Reputation: 0

Joined: 28 Jan 2008
Posts: 143
Location: here

PostPosted: Sat Jul 12, 2008 10:18 am    Post subject: Reply with quote

EightfoldIllusion wrote:
Visual C++ is not a good thing for noobs to start in at all. It actually differs from plain C++ I believe but either way I'm having issues with it and I'm using pre written files.

Only reason I have it is to run my P-Server for Maple and thats it. But I cant even make a HelloWorld program without getting some bull crap error. Just stick to regular compiling. Or if you want use Microsoft Visual Basic it's alot simpler actually, most of the functions are drag and drop.



Did you try... Learning C++? If you can't make a hello world program in VC++, i wouldn't blame the compiler... Anyway, what error does it throw?





Code:

#include "stdafx.h"
#include <iostream>

int main( int argc, char *argv[] )
{
    std::cout << "Hello world!" << std::endl << "This is no different from \"regular C++\"" << std::endl;

    return 0;
}



That was hard O_o
Back to top
View user's profile Send private message AIM Address MSN Messenger
famousmassacre1
Expert Cheater
Reputation: 0

Joined: 30 Jun 2008
Posts: 113
Location: San Antonio Texas

PostPosted: Sat Jul 12, 2008 12:10 pm    Post subject: Reply with quote

my code is


// my first program in C++

#include <iostream>
using namespace std;

int main ()
{
cout << "Hello World!";
return 0;
}

_________________
Back to top
View user's profile Send private message
Felgore
Master Cheater
Reputation: 0

Joined: 16 Apr 2007
Posts: 447

PostPosted: Sat Jul 12, 2008 10:03 pm    Post subject: Reply with quote

That looks alright to me, although i may be wrong.
Back to top
View user's profile Send private message
HalfPrime
Grandmaster Cheater
Reputation: 0

Joined: 12 Mar 2008
Posts: 532
Location: Right there...On your monitor

PostPosted: Sat Jul 12, 2008 10:22 pm    Post subject: Reply with quote

What's the error? When that program runs, it would close right after it was done and not let you see what it had printed. put cin.get() before return 0.
_________________
Back to top
View user's profile Send private message
spirit1969
Advanced Cheater
Reputation: 0

Joined: 12 Jun 2008
Posts: 80
Location: berlin/germany

PostPosted: Tue Jul 15, 2008 5:08 am    Post subject: Reply with quote

c++ is not a perfect language for beginners, try using visual basic. its a way easier for programing because its much more easier to add a GUI there.
Back to top
View user's profile Send private message
STN
I post too much
Reputation: 43

Joined: 09 Nov 2005
Posts: 2673

PostPosted: Tue Jul 15, 2008 9:25 pm    Post subject: Reply with quote

EightfoldIllusion wrote:
It actually differs from plain C++ I believe but either way


lmfao...its a compiler ffs...not a new language Laughing

_________________
Cheat Requests/Tables- Fearless Cheat Engine
https://fearlessrevolution.com
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites