This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="background-image: url(bg.jpg); width: 100%; height: 100%; background-size: cover; padding-bottom: 56.25%;"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
char* fti(float num) //função que converte o float de entrada em string | |
{ | |
Uint32 n1=0; | |
Uint32 n2=0; | |
Uint32 n3=0; | |
Uint32 n4=0; | |
char c1,c2,c3,c4; | |
n1= num/10; | |
n2= (num-(n1*10))/1; | |
n3 = ((num*10-n1*100-n2*10))/1; |
NewerOlder