用参数调用main函数

时间:2013-01-20 19:29:55

标签: c

#include <string.h>
#include <stdio.h>
#include <windows.h>
#include <wchar.h>
#include <unistd.h>
#define sleep(x) Sleep(1000 * x)

int checkTime();

int main ( int argc, char *argv[] ) { 

    char *getFirstArgument = argv[1];
    char *getSecondArgument = argv[2];
    char getCheckTime;

    checkTime(&getCheckTime);

    if(*getFirstArgument != getCheckTime) {
        sleep(1);
        main(*getFirstArgument);
    } else if(*getFirstArgument == getCheckTime && *getSecondArgument == 'r') {
        system("shutdown /r");
    } else if(*getFirstArgument == getCheckTime) {
        system("shutdown /s"); 
    }

    return 0;

}

int checkTime() {

    char getConvertedTime[5] = {};

    SYSTEMTIME localTime;
    GetLocalTime ( &localTime );

    sprintf( getConvertedTime, "%d:%d", localTime.wHour, localTime.wMinute );
    printf( "%s\n", getConvertedTime );

    return 0;

} 

嗨!当我回想起主要功能时,我不知道我需要提出什么样的论点,我真的找不到答案,我知道它存在于某个地方。 :)这是显示MinGW编译器的错误。

$ gcc -Wall test.c -o test.exe 
test.c: in function 'main':
test.c:20:3: error: to few arguments to function 'main'
test.c:10:5: note: declared here

抱歉我的英语不好!谢谢!

1 个答案:

答案 0 :(得分:2)

您可以使用实际循环,而不是在1秒后调用main()来创建某种循环以等待指定的时间量!尝试这样的事情:

checkTime(&getCheckTime);
while(*getFirstArgument != getCheckTime) {
    sleep(1);
    checkTime(&getCheckTime);
}

// Do something after the provided time
if(*getSecondArgument == 'r') {
    system("shutdown /r");
} else {
    system("shutdown /s"); 
}

此外,我真的不明白你打算做什么。因此,上面的代码段不太可能修复您的完整程序。