Linux
microsecond sleep
Dork94
2018. 4. 9. 15:48
아래와 같이 쓰시면 됩니다!
#include <unistd.h> int main() { usleep(500); //sleep 500 microsecond return 0; }