mirror of
https://github.com/foxsen/archbase.git
synced 2026-02-06 11:53:45 +08:00
9 lines
208 B
C
9 lines
208 B
C
struct Ss {
|
|
char c1, c2;
|
|
} a3 = {3, 4};
|
|
int fun (double a1, ...);
|
|
int test () {
|
|
return fun (1, (float) 2, a3, (long double) 5, (float) 6,
|
|
(short) 7, (int) 8, (float) 9, (int)10);
|
|
}
|