python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
What constitutes a read or write to memory/cache in x86 assembly, according to valgrind?
I am looking into why some compiled Pascal code is slower than other languages/compilers for a simple test case. I believe it has to do with the preference of the FreePascal x86 compiler to use memory...
mDiPalma
Votes: 0
Answers: 1
How to save JSONObject to json file in UTF8 encoding Rad Studio/Delphi
I use Rad studio 11. I read information from json file (file is UTF8 encoded) and convert to jsonobject.
Then I make changes to this jsonobject and want to save to json file. The information is succes...
APTEMKA
Votes: 0
Answers: 2
What is the equivalent of container_of in Delphi?
I am translating code from C++ source code to delphi language. What exactly does this resource do and how can I write it in delphi ?
#define container_of(inner, outer_t, elem) ((outer_t*)((char*)(inne...
SeCi
Votes: 0
Answers: 0
Newton-Raphson method (square root) in Pascal, recursion
I want to implement this square root method in Pascal using recursion. However, I have some problems understanding how to transfer iterative method into recursive method:
Program NewtonRaphsonRecursiv...

Brian Brown
Votes: 0
Answers: 2