/* Ohjelma tulostaa tekstin Hello world! */ #include int main(void) { int i = 4; double d =5; printf("%d %5.2lf\n",i,d); // printf(10); return 0; }