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
~585 People Reached
Favorite Forums
Favorite Tags
c x 8
c++ x 1
Member Avatar for konata_89

[CODE]#include <stdio.h> #include <conio.h> #include <stdlib.h> #include <string.h> #define TRUE 1 #define FALSE 0 void new_item(); void list_item(); void search_item(); void buy_item(); void list_buy_item(); struct item { float price; char item_name[20]; int n_item; struct item *ptrnext; }; struct item*headptr, *newptr, *currentptr,*previousptr,*headptr2, *newptr2, *currentptr2,*previousptr2; void main() { char ch; int choice=TRUE; …

Member Avatar for Luckychap
0
126
Member Avatar for konata_89

how do i want to add search funtion by matric value to get the info of the student add this code[ICODE]#include <stdio.h> #define MAX 10 struct studenInfo{ char name[81]; char matric[71]; }; int main() { struct studenInfo library[MAX]; int menu (void); struct studenInfo add(void); void list(struct studenInfo*sp, int size); int …

Member Avatar for Ancient Dragon
0
114
Member Avatar for konata_89

the question is using pointer variable: a)write a program that receives a sorted array of integer.then it will read an integer value and insert that integer value in correct place (using pointer variable) -is it how im write the code right. b)improve the first program code by allowing the program …

Member Avatar for abhimanipal
0
126
Member Avatar for konata_89

//help me i dont know what wrong with list function [code] #include <stdio.h> #define MAX 10 struct book{ char title[81]; char author[71]; char category[31]; }; int main() { struct book library[MAX]; int menu(void); struct book add(void); int list(struct book,int); int choice, count = 0; do { choice = menu(); switch( …

Member Avatar for konata_89
0
125
Member Avatar for konata_89

i dont understand how to do makefile .? can u give me some exmaple how to makefile for this code.and where to add the make file ...im using devC++ and vb2008 [code=cplusplus] //file for GradeBook.h #include <string> using std::string; // GradeBook class definition class GradeBook { public: GradeBook( string name …

Member Avatar for daviddoria
0
93