Hello, Im trying to make some sort of reminder program that plays a wav every 30 seconds to remind me of what Im supposed to do.
#include <iostream.h>
int main()
{
system("start alarm.wav");
}
Thats what Ive got so far, now Im trying to figure out how to make it repeat every 30 seconds, but with no luck :(