I recently had to type in a small C test program and, in the process, I made a spelling mistake in the main function by accidentally using vooid instead of
In C, the default type for a function argument is int. So, your program is treating the word vooid as int main(int vooid), which is perfectly valid code.