# Fundamentos da Linguagem C
# Aula 1 - Conceitos Básicos
## 3.3 - Um conversor de quilômetros para milhas
+ Um exemplo mais útil...
: #include <stdio.h>
: #include <stdlib.h>
: #define MILHA 0.6213
: int main(int argc, char *argv[]) {
: float km = atof(argv[1]);
: float ml = km * MILHA;
: printf("%.2fkm = %.2f milhas\\n", km, ml);
: return 0;
: }