Posts tagged with c - page 2

Flooding RAM ( C )

This program will dynamically allocate memory and shows the amount of memory it uses. When heap is empty it will show Memory Full. The memory will be freed once you close the program (No harm by the way!). The rate at which memory is allocated is small (1 Kb per each iteration) so you can see at which point heap becomes empty.

Encode your text into ASCII HEX code using C

This C++ code will convert the typing keystrokes from keyboard into ASCII code(HEX).