1
0
UAHCode/CPE435/Lab2/lab2_ex4_sleeping.cpp

12 lines
211 B
C++
Raw Permalink Normal View History

2022-08-28 21:12:16 +00:00
using namespace std;
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main(int argc, char * argv[])
{
sleep(50);
printf("Hello World");
}