Skip to content

Instantly share code, notes, and snippets.

View lmansur's full-sized avatar

Lucas Mansur lmansur

View GitHub Profile
<div style="background-image: url(bg.jpg); width: 100%; height: 100%; background-size: cover; padding-bottom: 56.25%;"></div>
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;