Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~408 People Reached
Member Avatar for vicsong93

#include <stdio.h> #include <stdlib.h> #include <string.h> struct account { char AccName[100000]; int Age; float AccBalance; struct account *Next; }; typedef struct account BankAcc; void init(struct Account** headOfList); void insert(struct account **headOfList, char *name, int age, double balance); void remove(struct account **headOfList, char *name ); void print(struct account *headOfList ); void …

Member Avatar for Schol-R-LEA
-1
193
Member Avatar for vicsong93

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <malloc.h> struct account { char AccName[20]; int Age; double AccBalance; struct account *Next; }; typedef struct account BankAcc; void init( struct Account **headOfList ); void insert(struct account **headOfList, char *name, int age, double balance); int Delete(struct account **headOfList, char *name ); void print(struct …

Member Avatar for vicsong93
0
154
Member Avatar for vicsong93

How to create 3 type languages ( Chinese, English, Malay ) dictionary application for android ?????

0
61