why does this short piece of code result in a spectacular loop, followed by my crashed computer? I am using miracle c compiler:

#include <stdio.h>
#include <time.h>


main()
{
printf("1234");

printf("\nProgram execution time using clock() = %ld hundredths of a second.", clock());

return(0);
}

many thanks to the person who canhelp!!