No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Hey all, I am having trouble with a query and nonquery in C# while accessing an Access database. The query I am having problems with is using the LIKE statement in the query. sqlString = "SELECT * " + "FROM Convocations " + "WHERE Name LIKE \"*" + txtFilterParameter.Text + …
EDIT: Delete post. Figured it out myself before someone responded. ;P
[CODE]#include <stdio.h> int fill_array(void); int display_array(int count); typedef struct { char worker_name[20]; float hourly_pay; int hours; }WorkerRecord; int main() { WorkerRecord info[50]; int count, k; float average_wage; count = fill_array(); display_array(count); for(k = 0, average_wage = 0; k < count; k++) { average_wage += info[k].hourly_pay; } average_wage /= count; printf("\nAverage …
The End.
MrJewbagel