Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c x 10
c++ x 1
Member Avatar for notsogood

Hi everyone, I am writing an[URL="http://www.8puzzle.com/8_puzzle_problem.html"] 8-puzzle Problem[/URL] Solving Program that utilizes the [URL="http://en.wikipedia.org/wiki/A*_search_algorithm"]A* (A Star) search algorithm[/URL]. I've come this far in completing the desired program, and somehow summed up to this: (entire source code posted below). But I can't compile it just yet due to this builder error: …

Member Avatar for thomas_naveen
0
128
Member Avatar for notsogood

Hi I have a program that adds, deletes, edits and views a text file's contents. The text file, named as "student.cvs" has the following content and format <student code>, <last name>, <first name>, <middle name>: [ICODE]2009-1234, Asa, Gohan, Gogo 2009-4321, Basha, Bushum, Jujog 2009-1999, Mekemi, Mekeke, Makeke[/ICODE] The whole program …

Member Avatar for notsogood
0
105
Member Avatar for notsogood

I have a program that requires to read from a text file with a .cvs file extension. The program tends to add, edit, delete records written in the file. But before anything, the program simply can't read the .cvs file to begin with. Anyone can guide/help me on this? Thanks. …

Member Avatar for yellowSnow
0
150
Member Avatar for notsogood

My program keeps getting this error: [I]syntax error before "else" [/I] My source code: [CODE=syntax]#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define MAX_STUD_NUM 9 #define MAX_STUD_LASTNAM 20 #define MAX_STUD_FIRSTNAM 20 #define MAX_STUD_MIDNAM 20 #define MAX_INSTRUCT_ID 5 #define MAX_INSTRUCT_NAME 50 #define OK 0 #define CANCEL -2 #define TRUE 1 #define …

Member Avatar for notsogood
0
1K
Member Avatar for notsogood

Hi I kinda forgot my old account for this forum coomunity and I wanted to post a problem about the POS I am developing with C. The program allows you to read a certain file (inventory.ini) , add items to it, view the items, edit contents and delete. Here is …

Member Avatar for yellowSnow
0
117