예제 #1
0
int main(int argc, char *argv[])
{
    srand(time(NULL));
    //srand(0);
    testme();
    return 0;
}
예제 #2
0
int main(int argc, char *argv[])
{
    str[MAX_STR_LEN] = '\0';
    srand(time(NULL));
    testme();
    return 0;
}
예제 #3
0
int main(int argc, char *argv[])
{
    SelectStream(2);
    PutSeed(-1);
    //srand(time(NULL));
    testme();
    return 0;
}
예제 #4
0
int main(int argc, char *argv[])
{
	// seed the random number generator
	// do this only once per execution

    srand(time(NULL));

    // call the testme() function

    testme();

    // return exit code 0 and exit program

    return 0;
}
예제 #5
0
파일: test.c 프로젝트: janbre/NUTS
int main() {
	testme();
}
예제 #6
0
파일: addrof1.C 프로젝트: 0day-ci/gcc
static inline void
stupid_func(st s)
{
        testme(s.a, s.b, s.c);
}