delete all files smaller than a certain size linux

C++
find . -name "*.tif" -type 'f' -size -160k -delete

Source

Also in C++: