Skip to content

Instantly share code, notes, and snippets.

@gabrielfalcao
Created November 23, 2012 23:08
Show Gist options
  • Save gabrielfalcao/4137661 to your computer and use it in GitHub Desktop.
Save gabrielfalcao/4137661 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
float ask_user_for_dollars(char *question){
char *string = malloc(13);
float dollars;
printf("%s\n", question);
scanf("%s", string);
dollars = atoi(string);
return dollars;
}
char *convert_to_textual(float money){
return "one dollar";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment