blob: 491592dd5b0815c31b998996f918bfbb32ecc626 [file] [log] [blame]
void testfunc(short s, float X, char C, long long LL, int I, double D) {
printf("%d, %f, %d, %lld, %d, %f\n", s, X, C, LL, I, D);
}
int main() {
testfunc(12, 1.245f, 'x', 123456677890LL, -10, 45e14);
return 0;
}