Forum: C Jan 31st, 2009 |
| Replies: 12 Views: 1,699 It seems that the code is written in Pascal or it's just and algorithm. Well, := means equal to (=) in C.
the algorithm is same as i told u before. |
Forum: C Jan 30th, 2009 |
| Replies: 12 Views: 1,699 Solution has been sent to you ... however i didnt compile the code, but it will work, i just forgot to set the boundries of array and hope that u will do it by using a nested while loop of if... |
Forum: C Jan 30th, 2009 |
| Replies: 12 Views: 1,699 Well, a simple logic for u is that
1. maintain loop which will run until a condition occurs ( that condition i will tell u a bit later)
2. now in that while loop read the first two number, if the... |
Forum: C Apr 27th, 2008 |
| Replies: 4 Views: 971 void createHashTable(void);
This function creates a hash table in which the data items are to be inserted in sorted form for better searching
void getData(void);
This function collects data from... |
Forum: C Dec 18th, 2007 |
| Replies: 7 Views: 5,219 im using Turbo C 3.0
can u plz tell me those errors, so that i can do some better work next time |
Forum: C Dec 12th, 2007 |
| Replies: 3 Views: 714 im Student!! :)
there might be some mistakes... but as im a student and i have made this so i thought that perhaps it could be helpful |
Forum: C Dec 12th, 2007 |
| Replies: 4 Views: 971 Added just to help other....
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void createHashTable(void);
void getData(void);
void formatting(void);
int insertData(int); |
Forum: C Dec 12th, 2007 |
| Replies: 7 Views: 5,219 Added just to help other....
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#define Operator 1
#define notOperator 0
#define empty -1 |
Forum: C Dec 12th, 2007 |
| Replies: 3 Views: 714 Added binary Tree just to help others.....
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void formatting(void);
int input(void);
struct binTree* createNode(struct binTree*,int);... |
Forum: C Dec 12th, 2007 |
| Replies: 2 Views: 2,289 im a student of 2nd year BS, doing my BS in Computer Science.
Here I want to include a program by me, may be someone will be helped by me :)
#include<stdio.h>
#include<conio.h>... |