Skip to content

Instantly share code, notes, and snippets.

@zaman
Created December 2, 2010 19:24
Show Gist options
  • Save zaman/725885 to your computer and use it in GitHub Desktop.
Save zaman/725885 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
int main()
{
char *s;
float a;
s="12.34";
a=atof(s);
printf("%2.2f",a);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment