Create a empty file using dd

How to create a empty/null file with a specified size

# dd if=/dev/zero of=destinationfile.bin bs=1024k count=100

This command creates a 100MB (1024k * 100) sized file.