Tag: programming
The inline keyword in Delphi is a powerful optimization feature that instructs the compiler to replace a function or procedure call with its actual code, eliminating the overhead of …
Count how many squares are there in the following figure. Easy validation by Python using Bruteforce, checking every possible pair of points (lower-left, and upper right) #!/usr/bin/env python # …
Javascript is the world’s most used programming language nowadays. Your Javascript application can attract billions of audiences and there is no other programming language can achieve a similar scale. …
node.js (http://nodejs.org) starts to gain its popularity these days. It is a Javascript-based event-driven, non-blocking IO, lightweight Server side toolkit, which can be easily used to build e.g. web …
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 …