示例#1
0
int main()
{
    int total;

    total = Bar10( 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 );

    printf( "main: total = %d\n", total );
 
    return 0;
}
示例#2
0
int main()
{
    Bar10(6, 2, 4, 8, 1, 9, 0, 7, 3, 5);

    return 0;
}