6 lines
92 B
C
6 lines
92 B
C
|
|
int main() {
|
|
printf("int: %d float: %g double: %g\n", 1, 2.2f, 3.3);
|
|
|
|
return 42;
|
|
}
|