How do I use double in C?
-
char a; int b; double c; getchar(); printf("insert a char\n"); getchar(); scanf("%c", &a); printf("\n"); printf("insert an int\n"); scanf("%i", &b); printf("insert a double\n"); scanf("%g", &c); printf("%c, %i, %g", a,b,c); for some reason, the it never allows the user to insert a double and instead goes to last command with a ? in the place of double. I tried using %lf,%f but it doesnt work.
-
Answer:
Two basic problems: - the getchar call after you prompt for a char is discarding the entered character. - in your scanf for double, %g should be %lf Test your code with bogus entries, and I'm sure you'll see undesirable behavior. I recommend adding at least some rudimentary input validation. Here are my modifications to your code: #include <stdio.h> #include <string.h> #define MAX_LINE_LEN 32 char *getline(void); int main(int argc, char *argv[]) { char a; int b; double c; do { printf("insert a char: "); } while (sscanf(getline(),"%c", &a) != 1); do { printf("insert an int: "); } while (sscanf(getline(),"%i", &b) != 1); do { printf("insert a double: "); } while (sscanf(getline(),"%lf", &c) != 1); printf("%c, %i, %g\n", a,b,c); return 0; } char *getline() { static char line[MAX_LINE_LEN]; fgets(line,MAX_LINE_LEN,stdin); *(strchr(line,'\n')) = '\0'; return line; } #if 0 Sample run: insert a char: insert a char: x insert an int: y insert an int: 99 insert a double: . . . insert a double: 0.25 x, 99, 0.25 #endif
DLV at Yahoo! Answers Visit the source
Other answers
you should probably read the width specification before using a type. double requires a prefix l make sure you read the printf specification as well, it may be different (probably isn't).
Jim
Related Q & A:
- How Can I use .net dll in C program?Best solution by Stack Overflow
- How do I call an objective-c method?Best solution by Stack Overflow
- How do I generate barcode using c#?Best solution by Stack Overflow
- How do i print double sided?Best solution by Yahoo! Answers
- How do I make a Vitamin C standard solution?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.