954,496 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Turbo C help

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.

Colin Mac
Posting Whiz
327 posts since Sep 2006
Reputation Points: 78
Solved Threads: 22
 

>>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 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;
}
Ancient Dragon
Retired & Loving It
Team Colleague
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
 

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.

~s.o.s~
Failure as a human
Administrator
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 734
 

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.

Colin Mac
Posting Whiz
327 posts since Sep 2006
Reputation Points: 78
Solved Threads: 22
 

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.

~s.o.s~
Failure as a human
Administrator
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 734
 

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 <>

upendra cse
Newbie Poster
1 post since Dec 2010
Reputation Points: 10
Solved Threads: 0
 
Ancient Dragon
Retired & Loving It
Team Colleague
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
 

@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() ..

Shankye
Junior Poster
168 posts since Nov 2010
Reputation Points: 48
Solved Threads: 16
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You