Set the return data type as void.
#include <stdio.h> void add() { printf("asdfasdf"); } main () { add(); add(); add(); }
asdfasdfasdfasdfasdfasdf