Hi, I'm a beginner and just started Turbo C

I wrote this program in the editor

main()
{
float years, days;
printf ("Please type your age in years:");
scanf ( "%f", &years);
days = years * 365;
printf ("You are%.1f days old.\n", days);
}

I then run the program and it asks me my age in years. I input my age and when I press enter to tell me my age in days it goes from the DOS window back to the turbo C editor, i then press Alt+ F5 to go back to the DOS screen and it then tells me my age in days

So the program is working but my question is-

Why does it jump back to the turbo c window when I press enter to enter my age? Is this wrong?

Thanks.

Recommended Answers

All 7 Replies

>>Why does it jump back to the turbo c window when I press enter to enter my age? Is this wrong?


because you didn't tell the program to do anything else. If you want it to wait so that you can see what's on the screen, put a getch() at the end so that it will wait for keybord input.

After calling scanf() with an integer, the scanf() function does not remove the <Enter> key from the keyboard buffer. You must flush the input buffer or else the program won't wait for the next getch() .

int main()
{
    float years, days;
    printf ("Please type your age in years:");
    scanf ( "%f", &years);
   getchar(); // remove '\n' from keyboard buffer
    days = years * 365;
    printf ("You are%.1f days old.\n", days);
   getchar();
   return 0;
}

Better than using scanf which is a pretty complicated function which leaves the input stream dirty try out the alternative functions fgets along with atoi to take the input from user. For the function prototypes look here:
http://www.cplusplus.com

And why are you using the age old Turbo Compiler? If you can, try to install a better IDE as well as a compiler.

The list of all the new compilers and free IDE can be found in the sticky at the top of the C++ forum in "Starting C".

Hope it helped, bye.

Thanks, I'm using turbo C because that's what we are going to use in college.

I asked my lecturer today and he told me because the getche() function was missing like you said which I had forgotten about so I rewrote it like below
and it worked the way I wanted it to.


main()
{
float years, days;
printf ("Please type your age in years:");
scanf ( "%f", &years);
days = years * 365;
printf ("You are%.1f days old.\n", days);
getche();
}

I'm not fully sure what those extras that you added are for, haven't came across them yet so I'm not going to worry too much for now.. .

Thanks for all your help.

Well here is the general techinique used to avoid the pitfalls of scanf.
Take a look at this code iif you are really interested in learing something new.

#include <stdio.h>
#include <stdlib.h>


int main (void)
{
    char buffer [BUFSIZ] ;
    float years, days;
    printf ("Please type your age in years: ");
    fgets (buffer, BUFSIZ, stdin) ;
    if ( buffer [strlen (buffer)] == '\n')
        buffer [strlen(buffer)] = '\0' ;
    years = atof (buffer) ;
    days = years * 365;
    printf ("\nYou are %.0f days old.\n", days);
    getchar () ;

    return 0 ;
}

Hope it helped,bye.

i am trying to install turboc++ software in our windows7 (64bit) but i'm unable to install and have some problem so please i kindly request to you please help me via <<Snipped>>

@Colin mac .
They are different functions used to get user inputs similar to scanf and getche() which your sir suggested..

U can google to know more about functions like getchar() getch() fgets() ..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.