Forum: C Jun 22nd, 2008 |
| Replies: 5 Views: 1,078 http://www.teuthis.com/html/daisy_mp3.html
Unless you mean a player in software? |
Forum: C May 3rd, 2008 |
| Replies: 18 Views: 1,903 fseek is causing the problem.
Make sure to return a value from main.
Also, learn how to use code tags - the yellow background behind your code.
Edit - fseek is probably causing the problem.... |
Forum: C Dec 23rd, 2007 |
| Replies: 14 Views: 8,702 If you must write a program for the PC side under XP. You can use the SerialPort class in .NET. There's lots of information on the net about using VB for uCs. You don't have to use win32.... |
Forum: C Jun 30th, 2007 |
| Replies: 9 Views: 1,628 You can't have whitespace in a variable's name like this:
int numerator a;
You'd have to declare that variable something like this instead:
int numerator_a;
Then if you wanted to store an... |
Forum: C Sep 22nd, 2006 |
| Replies: 4 Views: 4,656 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... |
Forum: C Sep 21st, 2006 |
| Replies: 4 Views: 4,656 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 *... |