본문 바로가기

Enjoy IT/Window

컴퓨터 자동종료 코드


#include <stdio.h>

#include <stdlib.h>


int main(void)

{

system("%windir%\\system32\\shutdown -s -t 150"); //150초 후에 꺼짐

}