I have a program that inputs a name, looks in a table and
returns a string from another table if it is found. Now for
one of the names I want it to return a structure.
one problem I'm having is u...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10193636.html
Zones:
C++Date Answered: 08/12/1999 Rating: 4.8 Views: 0
http://www.experts-exchange.com/Programming/Languages/C/Q_20110681.html
Zones:
CDate Answered: 05/05/2001 Rating: 8.2 Views: 0
If this is my structure:
define SIZE = 8
struct cars
{
char name[25];
int id;
char cartype[1];
int numstock;
float cost;
float price;
float profit;
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20117221.html
Zones:
C++Date Answered: 05/15/2001 Rating: 9.4 Views: 0
struct student_info {
char name[20];
int weight;
};
struct student_info temp;
struct student_info *ptr;
ptr = &temp;
ptr->weight = 20;
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20232530.html
Zones:
C++Date Answered: 11/16/2001 Rating: 7.6 Views: 0
I have a program where I am trying to store customer information into a struct array. What this will allow me to do is print a nice table. However it isn't very universal if say the person would l...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20367764.html
I am making a project which requires me to report the contents of a directory/series of directories. First of all i need to copy the filenames plus their modified date to a text file in the format:...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20395271.html
Zones:
C++Date Answered: 11/11/2002 Rating: 8.6 Views: 0
I'm currently trying to write my first hash table, definied as an array of lists:
typedef struct liststruct {
char string[MAXWORD];
struct liststruct *next;
} list;
So a would defi...
http://www.experts-exchange.com/Programming/Languages/C/Q_20438707.html
Zones:
CDate Answered: 12/30/2002 Rating: 7.6 Views: 0
I have a struct like that:
struct msstruct
{
.......
int tid; //thread id
};
struct msstruct ms[no_threads];
I want to pass a struct to pthread_create, such as
pthread_create( &tid...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_20556919.html
void main
{
struct ibm
{
char startbit;
float salary;
char name[10];
char stopbit;
};
ibm ibm1 = {'t',885.34,"abcdefghi",'f'};...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20568431.html
Zones:
C++Date Answered: 03/31/2003 Rating: 6.4 Views: 0
I've been working on DLLImports of a SDK we use into C#, however the date types I need to pass into the functions are giving some problems.
The DLL requires that a structSize variable be correct...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20614750.html
Zones:
C#Date Answered: 05/14/2003 Rating: 7.2 Views: 0