blob: 6e5d575c5765171265175e8970608685f502bd6c [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);
}
void main() {
testfunc(12, 1.245f, 'x', 123456677890LL, -10, 45e14);
}