10 lines
156 B
C
10 lines
156 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
float a = 3.5;
|
|
double b = 3.1415926;
|
|
printf("%.6f, %.8lf", a, b);
|
|
return 0;
|
|
}
|