No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
[quote=Scottie_uk;258070]I am a mainly Java and VB programmer. However, I am writing a program that generates computer code in various languages. One of these is Pascal. What I am asking is simple. To detemine the size of an array in Java and VB I would enter: [code] anArray.length[/code] What is …
If you are determined to write it ALL on your own, the language makes no practical difference as there are a myriad of technologies that require in-depth understanding to truly write it from scratch. If instead you want to use libraries, there are suitable libraries for many languages. For example, …
if gain <= gain2 then begin Max := gain2; Min := gain; end else Max := gain; Min := gain2; end; Result := Max - Min; ....
The End.
codewritinfool