Skip to content

Commit

Permalink
Update convercoes.c
Browse files Browse the repository at this point in the history
  • Loading branch information
felipefrm committed Jun 4, 2018
1 parent 224f8fe commit 3888cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convercoes.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ int fracao_para_baseX(float *fracionaria, int b_destino){
return n;
}

int inteiro_para_base10(char num[], int b_origem, int ponto, int num_char[]){
unsigned long long int inteiro_para_base10(char num[], int b_origem, int ponto, int num_char[]){
int i, expoente = ponto -2; //desconsidera o PONTO e o SINAL.
unsigned long long int soma = 0;
for (i=1; i < ponto; i++){
Expand Down

0 comments on commit 3888cdf

Please sign in to comment.