#include <stdio.h> int main(int argc, char const* argv[]) { int i = 1; float j = 1; printf("%d,%0.1f", i, j); }
1,1
1,1.0
110
1,1.000000