Forum: C Aug 10th, 2005 |
| Replies: 21 Views: 6,196 I'll continue thanking you at this point...
Thank You,
Nolan |
Forum: C Aug 9th, 2005 |
| Replies: 21 Views: 6,196 and what the heck is the "3998072" from? |
Forum: C Aug 9th, 2005 |
| Replies: 21 Views: 6,196 Okay...so here's where it's at:
#include <stdio.h>
#include <stdlib.h>
struct sRecord
{
int date, volume;
char time;
double price[4]; |
Forum: C Aug 5th, 2005 |
| Replies: 21 Views: 6,196 Alright, just so you get an idea of where I'm at...I'm putting in red any of the lines that I don't understand. At this point I'm going to just sit here and study this code and try and get to the... |
Forum: C Aug 5th, 2005 |
| Replies: 21 Views: 6,196 the number of rows is not fixed |
Forum: C Aug 5th, 2005 |
| Replies: 21 Views: 6,196 Also, I guess there's no real reason why this couldn't be done in C++. Do you see some specific advantages to going that route? |
Forum: C Aug 5th, 2005 |
| Replies: 21 Views: 6,196 My apologies, I didn't even see that you were the one who wrote that code. Now that I step back, it seems like everywhere I've looked or posted, it had something to do with you. Strange.
... |
Forum: C Aug 4th, 2005 |
| Replies: 21 Views: 6,196 though I did just see that you offered advice on the other forum, so thank you.
I didn't realize that people would take such offense to asking advice on pre-written code on multiple boards and... |
Forum: C Aug 4th, 2005 |
| Replies: 21 Views: 6,196 As I said, I am quite new to C programming, that code is someone else's instructions on how to read a CSV file. It took me a half hour just to look through it and understand what was going on (and I... |
Forum: C Aug 3rd, 2005 |
| Replies: 21 Views: 6,196 Below is a program in C that I am trying to use to read in a spreadsheet (in CSV form), which I will eventually be doing calculations on and then writing out to a new file. I'm currently trying to... |