Forum: C Aug 16th, 2004 |
| Replies: 1 Views: 2,600 Hi, I did not try to run it but, you declared menunum as an Integer right?
scanf("%f", &menunum); /* 30 Users enters the number on the menu bar */
On that line, menunum should be scanned as %d? |
Forum: C Jul 15th, 2004 |
| Replies: 2 Views: 24,166 Greetings.
Not again...
Please read this reply (http://www.daniweb.com/techtalkforums/showthread.php?p=39792#post39792) |
Forum: C Jul 7th, 2004 |
| Replies: 1 Views: 2,036 |
Forum: C Jul 7th, 2004 |
| Replies: 10 Views: 4,141 |
Forum: C Jul 5th, 2004 |
| Replies: 10 Views: 4,141 Greetings.
Okie, so was that what you wanted? ;) |
Forum: C Jul 5th, 2004 |
| Replies: 10 Views: 4,141 Greetings.
Yeah, take a look at nuvandal's first post. Have a look at how he drew the output.
Initially, 4 rows will give:
$
$
$
$ |
Forum: C Jul 4th, 2004 |
| Replies: 10 Views: 4,141 Greetings.
I have checked your codes. Nice work.
Found some little errors. Maybe you've mixed up rows & columns? ;)
#include <stdio.h>
#include <conio.h>
void main()
{ |
Forum: C Jul 2nd, 2004 |
| Replies: 1 Views: 2,093 Greetings.
I'm no C expert but I hope I can help you.
Please check your do..while loop as I see 2 "whiles" there with only 1 "do".
Erm, honestly, I think you should look into methods like... |
Forum: C Jul 2nd, 2004 |
| Replies: 2 Views: 2,127 Greetings.
Would you like to store them in a data file or a database? |
Forum: C Feb 25th, 2004 |
| Replies: 5 Views: 5,850 Well, it's a project for computer networks actually.
I am to capture packets using a program called windump, and then decode each field of information in their respective ethernet frame, ip frame,... |
Forum: C Feb 24th, 2004 |
| Replies: 5 Views: 5,850 Thanks a lot for your reply.
I've tried and hey, the output differs, however it's still not what I expected it to be.
The first loop:
a1 b3 8 9a // which is correct
The second loop:
9a... |
Forum: C Feb 24th, 2004 |
| Replies: 5 Views: 5,850 Hi. Can anyone help me to distinguish the reason behind this case? Thanks a lot.
I initialized the following variable: unsigned char temp=0;
In the following statement block, I managed to get the... |