Calculating a nested root in C – I was asked to calculate the following nested root expression using recursion only. […]
Month: April 2023
How to debug using gdb?
How to debug using gdb? – I am trying to add a breakpoint in my program using b {line number} […]
makefile extension
makefile extension – I’m writing a C program using gcc in cygwin. My question is, how do you create a […]
How to draw text using only OpenGL methods?
How to draw text using only OpenGL methods? – I don’t have the option to use but OpenGL methods (that […]
python tracing a segmentation fault
python tracing a segmentation fault – I’m developing C extensions from python and I obtain some segfaults (inevitable during the […]
Radix Sort Base 16 (Hexadecimals)
Radix Sort Base 16 (Hexadecimals) – I have spent more 10hr+ on trying to sort the following(hexadecimals) in LSD radix […]
Is this the only return value for strcmp() in C?
Is this the only return value for strcmp() in C? – I’m learning C, and am currently studying String Handling. […]
—— ——–
—— ——– –
How to allocate and deallocate heap memory for 2D array?
How to allocate and deallocate heap memory for 2D array? – I’m used to PHP, but I’m starting to learn […]
What does a type followed by _t (underscore-t) represent?
What does a type followed by _t (underscore-t) represent? – This seems like a simple question, but I can’t find […]