Beispiel #1
0
int main(int argc, const char *argv[])
{
    repeat_three_times(say_hello, "Guys");
    repeat_three_times(count_number, (void *)4);
    
    return 0;
}
Beispiel #2
0
int main(void)
{
    repeat_three_times(say_hello, "Guys");
    repeat_three_times(count_numbers, (void*)4);

    return 0;
}