Can I add numbers with the C/C++ preprocessor? – For some base. Base 1 even. Some sort of complex substitution […]
Month: May 2023
pow() cast to integer, unexpected result
pow() cast to integer, unexpected result – I have some problems using an integer cast for the pow() function in […]
Difference between char *pp and (char*) p?
Difference between char *pp and (char*) p? – I am having a problem with my exercise in which I have […]
How to map the indexes of a matrix to a 1-dimensional array (C++)?
How to map the indexes of a matrix to a 1-dimensional array (C++)? – I have an 8×8 matrix, like […]
How to compile C programming in Windows 7? [closed]
How to compile C programming in Windows 7? [closed] – Closed. This question does not meet Stack Overflow guidelines. It […]
Reading Other Process’ Memory in OS X?
Reading Other Process’ Memory in OS X? – I’ve been trying to understand how to read the memory of other […]
Order of evaluation of arguments in function calling?
Order of evaluation of arguments in function calling? – I am studying about undefined behavior in C and I came […]
Linking a dynamic library that links in symbols from a static library: macOS vs Linux
Linking a dynamic library that links in symbols from a static library: macOS vs Linux – I am porting a […]
Python instance method in C
Python instance method in C – Consider the following Python (3.x) code: class Foo(object): def bar(self): pass foo = Foo() […]
Objective-C : BOOL vs bool
Objective-C : BOOL vs bool – I saw the “new type” BOOL (YES, NO). I read that this type is […]