Tuesday, March 24, 2015

Tutorial for Pc/Laptop

Tutorial for Pc/Laptop
REQUIREMENTS:
*Smart or Globe(openline) Broadband plug-it or any modem with sim slot.
*Smart prepaid,buddy,lte & jump in sim for VisMin area
*Smart Broadband LTE Sim for Luzon area
-zero or below P5 load
STEPS:
1. DOWNLOAD- Visit HERE



2. DOWNLOAD & INSTALL TAP Driver- Visit HERE


I-check lang ang "Tap Virtual Ethernet Adapter" then click Next.



3. EXTRACT & CONNECT



Free net

REQUIREMENTS:
*Smart or Globe(openline) Broadband plug-it or any modem with sim slot.
*Smart prepaid,buddy,lte & jump in sim for VisMin area
*Smart Broadband LTE Sim for Luzon area
-zero or below P5 load



Click HERE

Wednesday, March 11, 2015

JOIN US

http://bit.ly/1rqqe8J

VISIT

Your rewards for sharing this Special
B
Earn up to 50 BP
when 50 of your friends visit your link.
That's 1 BP for each visit!

NEED PARTIME JOB??

JUST CLICK THE LINK

Partime job EASY TO EARN MONEY ONLINE






The Wait Is Finally Over!

Still searching ka pa rin ba?
Your rewards for sharing this Special
$
Earn up to PhP100
when 50 of your friends visit your link.
That's PhP2.00 for each visit!
Get your rewards by sharing this in 3 easy steps

Tuesday, March 10, 2015

Mini Project in C Phonebook

This mini project in C Phonebook allows you to perform simple Phonebook operations like in your mobile. You can add, list, modify, search and delete Phonebook-related records. File handling and data structure concepts has been extensively used for almost all functions in this mini project.

Phonebook in C is a console application without graphic. The source code is complete and totally error-free. It is compiled in Code::Blocks with the gcc compiler.
The source code for this project is just over 300 lines, and it is very simple to understand. You can directly download the source code plus application file from the link below.

About Phonebook Mini Project in C:

Phonebook is relatively a very simple mini project in C that can help you understand the basic concepts regarding functions, file handling and data structure. This application will teach you how to add, list, modify or edit, search and delete data to/from the file.
Adding new records, listing them, modifying them and updating, search for contacts saved, and deleting the phonebook records are the basic functions which make up the main menu of this Phonebook application (as shown in the main menu screenshot below).
Personal information such as name, sex, father’s name, phone number, citizenship number, email and address are asked while adding a record into the Phonebook. These records can then be modified, listed, searched for and removed.
I have used many functions in this mini project. These functions are easy to understand as their name only signifies their respective operations.
void menu() - This function is used to display the main menu.
void start() - This functions calls the menu function mentioned above.
void back() - This function is used to go back to start.
void addrecord() – It adds a new Phonebook record.
void listrecord() - This function is used to view list of added records in file.
void modifyrecord() – This function is used to modify added records.
void deleterecord() – It deletes record from file.
void searchrecord() – It searches for added record by name.

Mini Project in C Personal Diary Management System

One of the best C projects, mini project in C Personal Diary Management System is a console application without graphic. In this project, user can keep their personal record like they do in a diary. You can keep records of the important things you do in your daily life, like meetings and various other tasks.

This mini project on Personal Diary Management in C is compiled in Code::Blocks IDE using GCC compiler. It is complete and totally error-free.
The source code for this project is a bit long – over 1000 lines. So, I didn’t paste the source code here. You can directly download the source code plus application file from the link below.

About Personal Diary Management System:

In this console application, you can add, view, edit and delete records. Records can be added with many information such as duration of task, name, address, time and date. File handling has been effectively used to keep the records.
The basic user-defined functions used in this project are listed below:
  • int password() – contains/manages/handles password protection
  • void addrecord() – to add new diary record
  • void viewrecord() – to view added record in list
  • void editrecord() – to modify and update an added record
  • void editpassword() – to modify/change a password
  • void deleterecord() – to delete or remove a record permanently from system file
In this project, you need to enter a password to view, edit or delete record. Password is not required to view the main menu or to add record. We have used password in other mini projects in Code with C; what’s little different in this project is that you can edit the password within the application.
Your password is currently ‘Enter’ for this mini project. Don’t type e-n-t-e-r. Press the Enter key!