I need help to learn how to make a 2 second pause between to printf's.
Please help!
Thanks!
#include <stdio.h>
void printHello() {
printf("Hello!\n");
printf("Who are you?\n");
printf("Hi,(person)\n");
printf("What are you up to?");
}
int main() {
printHello();
return 0;
}
Please help!
Thanks!