Electricity Billing System Version 1.0

 

About this code I called it Electricity Billing System Version 1.0 written entirely in C. It is a database driven application that uses text files and struct data structure to store and manipulate records in the database. I created this code to show that it is not difficult to write database application using C language.

If you find this code useful send me an email at [email protected]. People here in the Philippines who wish to contact me can reach me in my mobile phone numbers 09296768375 and  09226034089. Thank you very much and Happy Programming.

Regards,

Mr. Jake Rodriguez Pomperada, MAED - Instructional Technology

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

Submitted byAnonymous (not verified)on Fri, 03/27/2009 - 00:36

please tell me what is the password and username of   Electricity Billing System Version 1.0

Submitted byAnonymous (not verified)on Fri, 03/27/2009 - 17:01

Hi there the password for the user name is 123. you can change it in the code. Thank s for leaving a comment here. Regards, Jake ;-D
Submitted byAnonymous (not verified)on Wed, 07/08/2009 - 10:49

hi do u know how to use php script?im doing a sample of billing system but i dont know wat im going to do... der is always an error... tenx i hope to hear comment from u...
Submitted byAnonymous (not verified)on Wed, 07/08/2009 - 10:51

do you know how to use php language??
Submitted byAnonymous (not verified)on Wed, 08/05/2009 - 02:33

i want programme source code for electric bill in visual basic language
Submitted byunknownon Mon, 09/07/2009 - 16:54

tingnan mo sa code kng ano ang pass at user......
Submitted byAnonymous (not verified)on Sun, 10/04/2009 - 16:32

can i get that code.. plzz.. if u wnt plz send 2 my email,, [email protected] that is one of our project in programming..
Submitted byAnonymous (not verified)on Fri, 10/16/2009 - 15:01

This Billing System is very much useful... Thankx ..... And another think do you a synopsis file for this billing system... if you have kindly mail me to [email protected] Regards Harry.
Submitted byAnonymous (not verified)on Sat, 12/05/2009 - 22:35

where is the code of electricity billing system .plz e-mail me at [email protected]
Submitted byAnonymous (not verified)on Sun, 12/06/2009 - 16:14

In reply to by Anonymous (not verified)

Hi there you can just download the source code here it is free of charge. Thanks for visiting the site. Regards, Jake :-D
Submitted byAnonymous (not verified)on Fri, 12/11/2009 - 18:51

In reply to by Anonymous (not verified)

hi can u help me create a program in my subject send me some codes in vb.net pls my email is [email protected] tnx 4 the help in advance :)
Submitted byAnonymous (not verified)on Mon, 01/25/2010 - 09:19

can u help me in making a electric billing system with a java code?... email me at [email protected]:)
Submitted byAnonymous (not verified)on Fri, 01/29/2010 - 10:48

can you help me making a c programm for billing electricty without using linklist or struct plssss...☻☻☻ [email protected]
Submitted byAnonymous (not verified)on Mon, 02/08/2010 - 14:23

hi can u tell me how to make an electric billing system?
Submitted byAnonymous (not verified)on Tue, 02/09/2010 - 19:01

i want same in java
Submitted byAnonymous (not verified)on Tue, 02/23/2010 - 08:34

hi..can you help me to make a program of electric bill system too but by the uses of vb?....plzzz...thanx in advance! heres my gmail account just send it here,,,,, ([email protected])
Submitted byAnonymous (not verified)on Fri, 02/26/2010 - 16:36

hi..can you help me to make a program of electric bill system by the uses of visual basic 6.0? plz help me . its URGENT giv coding as soon as possible. here is my gmail address [email protected]
Submitted byAnonymous (not verified)on Sun, 03/07/2010 - 21:01

can i get that code.. plzz.. if u wnt plz send 2 my email,, this email add [email protected]
Submitted byAnonymous (not verified)on Sat, 04/03/2010 - 13:15

heloo! can you help me in creating an electricity billing system using java? the program can edit, delete, add, sort, and search an account. is it possible? please. HELP ME. you may send it in my email. [email protected]. THANK YOU VERY MUCH :)
Submitted byAnonymous (not verified)on Sun, 08/15/2010 - 10:04

pls tel me the password and username system of electricity billing version 6.0
Submitted byAnonymous (not verified)on Wed, 09/15/2010 - 13:52

sir please send me a project on library system with synopsis as soon as possible................
Submitted byAnonymous (not verified)on Thu, 09/30/2010 - 19:47

i need some help! Can you help me in database.. ELECTRIC BILLING SYSTEM with 4 transaction including application, connection and installation, conduct reading & billing, and payments... Thank you for i really need it.
Submitted byKennedy A. Figuerra (not verified)on Fri, 07/27/2012 - 20:50

In reply to by Anonymous (not verified)

hi can you help me doing my case study??
Submitted byAnonymous (not verified)on Wed, 10/06/2010 - 10:22

sir pls help us in our project and also our final exam.. make a electric billing system using c++. pls3X , it's urgent!! thank u

/* Author : Mr. Jake Rodriguez Pomperada, MAED - Instructional Technology Date Written : March 24, 2009 Tuesday Language : C Email : [email protected] Compiler : Turbo C 2.0 Username : 123 Password : 123 */ #include #include #include #include #define SIZE 100 #define MAX 100 #define cls clrscr struct bills { char code[5]; char name[35]; int present; int previous; float bill; }bills_var[SIZE]; void save(void), load(void), list(void), bo(int x1, int y1,int x2,int y2); void lin(int x1, int y1, int x2); void lin2(int x1, int y1, int x2); void ver(int x1, int y1, int y2); void bo2(int x1, int y1, int x2, int y2); int ctr, x=7, y=9; main() { char name1[10][35],ans; char name11[35], code11[5]; char code1[10][5]; float bill1,grandtot=0; int present1, previous1; int rec, kwh; float gen, dist, vat, vdist, voth, oth, uni; register int i=0; int choice=0,num=0,s=0,test,guard=0; int j, k; char sik[10]; char pass[5], user[6]; /* start of the splash*/ clrscr(); textcolor(9); gotoxy(30,7);printf("Electricity Billing System"); bo(10,5,75,23); lin(10,18,75); gotoxy(38,18);printf(" LOADING "); lin(10,9,75); for(j=1;j
Submitted byAnonymous (not verified)on Thu, 11/18/2010 - 21:39

very very thanks
Submitted byAnonymous (not verified)on Wed, 01/05/2011 - 15:01

"gud day!" can i ask you sir for vivid external interfaces of electric billing system?? please i badly need it..
Submitted byAnonymous (not verified)on Sun, 02/13/2011 - 15:18

hi.... i want help how to write the electric bill by using only sruct
Submitted byAnonymous (not verified)on Mon, 02/28/2011 - 12:55

nangangailangn po ako ng banking system gawa sa vb... can you help me... i badly needed it... pls,,send it to my email : [email protected] thanks a lot.......
Submitted byAnonymous (not verified)on Tue, 06/14/2011 - 13:14

hi i'm trying to do a final project based on software development.i'l going to create a billing system so i need some helps can you give me some ideas?? my mail is [email protected] help me...
Submitted byAnonymous (not verified)on Mon, 08/08/2011 - 09:53

please tell me about the whole system in billing system,, as soon as possible .. email me [email protected] thanks,,
Submitted byAnonymous (not verified)on Mon, 09/05/2011 - 13:25

hey can any one help me with electricity billing system code tat too in visual basic..pls.. if u find send me ..id s [email protected]..
Submitted byAnonymous (not verified)on Wed, 09/21/2011 - 18:07

Hi please can you help me this project electricity billing using vb.. waiting for yours reply.... Thank you,, Regards,, Anjali
Submitted bykiyS (not verified)on Thu, 03/01/2012 - 09:37

how to make a electric bill using vb.net and with the use of database ??? :')
Submitted byvanita mehra (not verified)on Wed, 05/16/2012 - 13:09

please send me the project and synopsis on electricity bill in visual basic6.0 as soon as possible...
Submitted byatul (not verified)on Sat, 06/02/2012 - 12:56

u r great sir, thanks for the help i u have time would u like to mail me the flow chart and uml diagram of the same to [email protected], anyways thanks in advance. regard atul.
Submitted byAnonymous (not verified)on Sun, 02/10/2013 - 17:49

guyz help me in our project vb6..send me the codes..please...i need more idea..thnkz
Submitted byAnonymous (not verified)on Sat, 06/01/2013 - 12:40

gotoxy ..is it a variable name?? or it is a function goto xy()..both assumption make the program not working..
Submitted byAnonymous (not verified)on Tue, 07/02/2013 - 20:12

what are the entities used in making an electric billing system using mysql and .net?

Add new comment