Category: assembly language
Heron’s Formula is a method to compute the area of a triangle when you know its three sides, a, b, and c. The area S is then based on p where and can be easily implemented …
November 26, 2012
assembly language, beginner, compiler, delphi, implementation, interpreter / compiler, profiler, programming languages, tools / utilities, tricks
In Delphi, you can use SizeOf to get the size of a type or any variable. The SizeOf function returns the storage size, in bytes, of either a Variable …
The remainder computation on two integers a and b can be normally simply expressed as %, or mod in most of the current modern programming languages. The process of …
In , a colour TV screen is printed using Javascript. The following presents the MSDOS .COM format (16-bit executable) which shows the colour TV screen. The file size of …
Python is an interpreted programming language. However, similar to Java, it compiles the source code to byte-code, which will improve the code performance. Java compiles the source code (*.java) …