Wednesday, August 28, 2013

gets() and do while using turbo c

 Sample Output 
 
#include<stdio.h>
#include<conio.h>
// this program code is using variable char, the gets(),  the do while statement, the char variables
// created by: boybalda46

main()
{
char name[20], course[20], school[20];// [20] maximum characters display included space
char ch;

Tuesday, August 27, 2013

Bayantel Wifi default password

--->type this in the address bar
 

 http://192.168.1.1

default username "admin"

default password "bayandsl"


----> after you type this.. you can change your wifi password


by: boybalda46

Length or Distance Conversion using Turbo C

Sample Output
#include<stdio.h>
#include<conio.h>
//this simple program is a convertion of Lenght or Distance using do case

int main()
{
 char ch;
 float mm, cmtr, cm, ft, feet, inc, inch;

Friday, August 16, 2013

gotoxy() in dev cpp

gotoxy()
is a standard C function defined in <conio.h>, but it will not work in ANSI C compilers such as Dev-C++. However, if you insist on using console functions, you can define your own function by using member functions available in <windows.h>

To use gotoxy() in Dev-C++, #include <windows.h> and insert this snippet before the main() function:

//Defines gotoxy() for ANSI C compilers.
void gotoxy(short x, short y) {
COORD pos = {x, y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}

using clrscr() in dev cpp

Clearing screen in DEV C++ compiler :

#include<stdlib.h>

int main()
{
system("cls");
}

//Paste the following text in "C:\Dev-Cpp\include\conio.h" of your system

#include<stdio.h>
#include<stdlib.h>
void clrscr()
{
system("cls");
}

Thursday, May 2, 2013

MAYDAY – Mayweather vs Guerrero

The final press conference for MAYDAY’s headline fight took place this Wednesday 05/01/2013. Promoters, managers, trainers and fighter’s took the opportunity to address the media as Saturday looms. Up until this point in the promotion of this event, both Mayweather and Guerrero have strayed away from press conference antics, scuffles and any other rough tactics to promote interest in the event.

Saturday, April 20, 2013

How to Register Smart Unlisurf using Smart Buddy sim:

Smart Unlisurf using SMART Buddy sim:

UNLI 50 - One day unlimited surfing (unlisurf) on your mobileu sing your Smart Buddy sim or you can use it on your SmartBro USB plug-it modem

P50/1day
Just text UNLI 50 to 211

UNLI 300 - Enjoy 7 days unlimited surfing (unlisurf) on your mobile using your Smart Buddy sim or you can use it on your SmartBro USB plug-it modem

P300/7days
Just text UNLI 300 to 211

Tuesday, April 16, 2013

Donaire drops unanimous decision to Rigondeaux

(UPDATED) It was another sad day for Philippine boxing as Nonito Donaire lost his superbantamweight championship to Cuba’s Guillermo Rigondeaux via a unanimous decision.

All three judges scored it for the former Olympic gold medalist and World Boxing Association titlist, with the scores reading 114-113, 115-112 and 116-111.

Donaire scored the bout’s only knockdown in the 10th when he landed a crunching left that dropped Rigondeaux for the first time in his professional career, but the Cuban came back storng int eh last two round to put the outcome beyond doubt.

London Marathon to go ahead despite Boston blasts

Race organisers said the London Marathon would go ahead on Sunday despite the death of at least three people in explosions near the finish line of the Boston Marathon, but police said they would review security plans.
British Prime Minister David Cameron wrote on Twitter that footage from the blasts was "shocking and horrific", and said that his thoughts were with those affected.
The harrowing scenes of injured spectators quickly prompted fears of a similar incident at the London race.
"We will not be cancelling, what we are doing, we are reviewing," London Marathon Chief Executive Nick Bitel told BBC Radio 5 Live.

Tuesday, March 19, 2013

Nick Diaz and Georges St-Pierre Mind Games Reached “Uncomfortable” Levels

The mind games between welterweight challenger Nick Diaz and champion Georges St-Pierre reached “uncomfortable” levels leading up to the UFC 158: St-Pierre vs. Diaz main event, according to St-Pierre.

Diaz had been calling for a fight with St-Pierre for years. He accused the champion of not really being injured and being scared to take the fight, while St-Pierre rehabbed his knee from an ACL injury.

//