|
 |
|
|
|
|
|
Is C better than vb
 |
|
 |
| |
K^2  |
|
Vidi Vici Veni

Group: Zaibatsu
Joined: Apr 14, 2004



|
That's the reason C# actually turned out to be great for some independent gaming projects. For small teams, with just one or two programmers that have to juggle all the code, having multiple modules across several different languages just isn't an option. For a large project, this just isn't an issue. You'll have different programmers specializing in different languages.
Java is a good language to learn, certainly. It's also great if you want to work on mobile applications. Or if you are Notch, apparently. But for PC/console gaming it's not the way to go.
In any case, the more languages you learn, the easier it will be to pick up new ones. At some point, it's not even a matter of whether or not you know the language. Give me a manual and a few days, and I'll be an expert in whatever the project calls for.
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
K^2  |
Posted: Wednesday, Sep 21 2011, 09:20
|
Vidi Vici Veni

Group: Zaibatsu
Joined: Apr 14, 2004



|
I really don't know about IT in general, but game development is pretty stable, like most entertainment industries. The focus shifts more from high risk to low risk projects, which means you might end up working on less interesting games, but you should be able to find a job even when economy is on the decline. The need for entertainment is greater, if anything, when things are bad economically. At least, that's what I'm counting on.
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
RajuGrewal  |
|
Raju Grewal

Group: Members
Joined: Nov 11, 2011

|
| QUOTE (Swoorup @ Saturday, Sep 17 2011, 04:55) | | If I want to be a better programmer (especially on the gaming area) with a better job should I completely ditch VB and learn C++ or C#? I hear today's games are relying upon C# and Javascript (unity,XNA and other bla bla bla). So what are you thoughts? I have recently started learning C++ and it is a whole lot of different than VB and I had to learn right from the beginning. | #include <stdio.h> int main(void) { printf("RIP, Dennis Ritchie.\n"); return 0; } This program in in c not in c++ You can write this in c++ like this.. #include<iostream.h> int main(void) { cout<<"RIP, Dennis Ritchie."<<endl; return 0; } or like this also #include<iostream.h> void main() { cout<<"RIP, Dennis Ritchie."<<endl; }
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
K^2  |
Posted: Tuesday, Nov 29 2011, 05:00
|
Vidi Vici Veni

Group: Zaibatsu
Joined: Apr 14, 2004



|
| QUOTE (RajuGrewal @ Monday, Nov 28 2011, 10:08) | | This program in in c not in c++ | That program will compile in C or C++, because it uses C libraries. There is no C or C++ specific code anywhere in it. | QUOTE | | You can write this in c++ like this.. |
Not in any compliant compiler. cout is part of the std namespace, so you either have to call it via namespace | CODE | | std::cout<<"Whatever\n"; |
Or by selecting the namespace first. | CODE | using namespace std; cout<<"Whatever\n"; |
The civilized way of programming it is by calling it via namespace, but a lot of lazy programmers simply rely on "using" in global scope, and unfortunately, a lot of programming books do the same, resulting in a bunch of people not even understanding what namespaces are and how you use them. No need to go far for example. What you wrote will throw an error "cout was not declared in this scope" in any civilized compiler. So of the two of you, Swoorup is the one who had the code that would actually compile in ISO C++, and there you go, trying to teach him that it's not C++.
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
0 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
0 Members:
Pages:
(2) 1 [2]
Track this topic
Receive email notification when a reply has been made to this topic and you are not active on the board.
Subscribe to this forum
Receive email notification when a new topic is posted in this forum and you are not active on the board.
Download / Print this Topic
Download this topic in different formats or view a printer friendly version.
| |
 |
|
 |
|
|
|
|