for C, is there a function that takes an int and doesn't execute next statement ?
printf("a");
wait(500);
printf("b");
b will be printed after 500ms after a is printed out. something of the sort. sorry for the stupid question but i wasn't sure how to go about searching for such function.