Forum: Assembly Jul 13th, 2008 |
| Replies: 1 Views: 757 http://forum.allaboutcircuits.com/showthread.php?t=12948
When you post your question all over the internet, people don't know what answers you've been given and then waste their time by giving the... |
Forum: Computer Science Jul 3rd, 2008 |
| Replies: 5 Views: 1,120 This is one module for a particular application.
http://www.robotstore.com/store/product.asp?pid=817&catid=1600
Maybe it's just the transducers you need... |
Forum: C Jun 22nd, 2008 |
| Replies: 5 Views: 1,076 http://www.teuthis.com/html/daisy_mp3.html
Unless you mean a player in software? |
Forum: C May 3rd, 2008 |
| Replies: 18 Views: 1,882 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,568 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,625 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++ Jan 18th, 2007 |
| Replies: 11 Views: 5,199 How to Compile C programs in Visual C++ 2005
http://cplus.about.com/od/learningc/qt/compilingc.htm |
Forum: C Sep 22nd, 2006 |
| Replies: 4 Views: 4,601 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,601 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 *... |