Re: i want to ask you..pls enter

Originally Posted by
TSD
To elaborate as a software developer myself, C itself will not help you at all for total war.
While certain OOP concepts are similar to all OOPL's i.e an if statement, while loop, do while, case statement etc.
There are things you can/can't do or have to simulate from language to language. i.e. there is no string type in C, so you have to define char text[5]; (type, variable name, length) whereas in java for example you would just type String text; and assign it any length text string you want C is more finiky, add into that you have to manage memory in C.
Now lets look at the MTW2 scripting language, it isnt C (you will see things like while loops and if statements it is OOP). Add on top of that it has its own objects and functions. that arent anything present in the standard C libraries.
Even if you know C, you cant just jump into a large C application that may be rife with custom libraries, and just expect to know what everything does because you know C. You need to dig into it and learn what everything does.
You don't seem to be overly familiar with programming concepts. The concepts of if and while are basic programming concepts and every single programming language will have them, usually expressed as the theoretical concepts of conditionals and repetition. The only concepts that are particular to OOP are the concept of a structure containing both data and actions which act on that data, dynamic binding and inheritance/polymorphism.
Further your answer didn't really deal with the question. Will learning C help with learning to mod, and as I answered previously the only help it will give is that it will teach the concepts of conditionals and repetition, variables, function calls and parameters. Obviously as the scripting language in M2TW/RTW is not C++ the actual implementation details will vary but the concepts will be the same.
Under the patronage of Roman_Man#3, Patron of Ishan
Click for my tools and tutorials
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe." -----Albert Einstein