30.11.11

Полный обзор Android Ice Cream Sandwich на Galaxy Nexus от Droider.ru


FIRST LOOK at Mango: The Next Windows 7 Phone OS Update


Top 10 BEST LIVE Wallpapers + Double Tap to Change


29.11.11

Samsung Galaxy Nexus Video Review da Telefonino.net


Tutorial on File Handling

Initially, File handling is difficult to understand but once you got the grip on the subject then it will be the piece of cake. In order to have the grip, you always need the end of thread. =)
Here is a working code of file handling. This code make the file at the instance and write the values in it, then read from the file and display them on the console.


# include <iostream.h>
# include <fstream.h>
# include <stdlib.h>

int main ()
{
ofstream outClientFile( "clients.txt", ios::out);
if(!outClientFile)
{
cout << "File caanot open" << endl;
exit(1);
}

cout << "Enter the account, name, and balance" << endl
    << "Enter end-of-file to end input. " << endl;

int account;
char name[30];
double balance;

while (cin>> account >> name >> balance)
{
outClientFile << account <<',' << name << ',' << balance << endl;
cout << "\n\n\nEnter the account, name, and balance" << endl
    << "Enter end-of-file to end input. " << endl;
}
ifstream inClientFile( "clients.txt", ios::in);
if(!inClientFile)
{
cout << "File caanot open" << endl;
exit(1);
}
cout << "Reading the record" << endl;
while (inClientFile >> account >> name >> balance)
{
cout << "Account: " << account <<'\n'
<< "Name:    " << name << '\n'
<< "Balance: " << balance << '\n\n';

}
return 0;
}

HTC Rezound Review


28.11.11

Tutorial on Functions











Now try this one.!





This one is left for your exercise.


iMaschine App Review


BEST APPS TO CUSTOMIZE YOUR ANDROID DEVICE


26.11.11

Canon PowerShot S100 Review - The Best Compact Camera


HTC Jetstream Unboxing and Hands-on


TOP 10 BEST NEW Android Apps + SWIPE AWAY 2011


25.11.11

Top 10 BEST New Android WIDGETS v 2.0


Unboxing Blackberry Playbook


Sony Ericsson Chocolate Phone (CONCEPT)


24.11.11

FUTURE GADGETS























Xbox 720 and PS4


Life in 2050


23.11.11

World’s First 3D Phone - LG Optimus 3D














LG 31in OLED


LG Optimus 3D - WALLPAPERS


















Twitter Delicious Facebook Digg Stumbleupon Favorites More