Skip to content

Instantly share code, notes, and snippets.

@MeteorVE
Last active January 20, 2016 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MeteorVE/fee3f33bf35a58830c57 to your computer and use it in GitHub Desktop.
Save MeteorVE/fee3f33bf35a58830c57 to your computer and use it in GitHub Desktop.
int main()
{
float x;
float y;
x=5.5;
y=3.3;
printf("%.2f + %.2f = %.2f",x,y,x+y);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment