Sunday 30 March 2014

how to send videos via bluetooth in nokia lumia 520 or 525

You can send Videos via Bluetooth in Lumia 520. Do the following steps.


1. Connect the phone via usb to pc.

2. In Phone memory or SD Card, create a folder inside *Saved Pictures Named "Videos".

3. Paste your videos inside that folder.

4. Switch on your bluetooth.

5. Go to that folder, tap and hold the video you want to share, Choose share>bluetooth. 


*Saved Pictures might be located inside a folder named "Picture" or "Photos".

Download Skype


Download skype

Download Avast! Free Antivirus 9.0.2013

Download Adobe Reader

Download Adobe Reader Latest Version for free


Download CCleaner Latest Version

CCleaner Latest Version


Description

Probably the the largest part in style freeware cleaner globally with above 1 billion downloads since its launch in 2003. Piriform’s CCleaner is a quick and tranquil to worth list which makes your processor earlier, more secure and more trustworthy. CCleaner removes cookies, temporary records and various other unused data with the aim of clogs up your operating approach. This frees up valuable problematical CD place allowing your approach to run earlier. Removing this data additionally protects your inscrutability significance you can browse online more securely. The built in Registry Cleaner fixes errors and out of order settings to succeed your processor more even. The unfussy, intuitive UI and rapid but powerful cleaning succeed CCleaner a favourite surrounded by novices and techies alike. Professional, Network, Business and Technician Editions of CCleaner are additionally obtainable instead of serious users.

A Faster Computer

Browsing the internet your processor picks up a entirety host of avoidable records, cookies and history. The same feature happens as you run the largest part programs on your processor – lots of temporary records and settings are saved. CCleaner removes these unused records and settings to liberated up valuable problematical drive place, enabling your approach to run earlier. The default settings just focus on nothing out of the ordinary chuck out records and locations so you’re dodgy to lose main in order but for you modify these. A Startup Cleaner additionally helps you to identify and remove unused programs running in the background as you start your processor. This makes the startup phase shorter and puts excluding strain on your problematical drive all through worth.



C Program for Count chars, spaces, tabs and newlines in a file

/* Count chars, spaces, tabs and newlines in a file */
# include "stdio.h"
main( )
{
FILE  *fp ;
char  ch ;
int  nol = 0, not = 0, nob = 0, noc = 0 ;
fp = fopen ( "PR1.C", "r" ) ;
while ( 1 )
{
ch = fgetc ( fp ) ;
if ( ch == EOF )
break ;
noc++ ;
if ( ch == '  ' )
nob++ ;
if ( ch == '\n' )
nol++ ;
if ( ch == '\t' )
not++ ;
}
fclose ( fp ) ;
printf ( "\nNumber of characters = %d", noc ) ;
printf ( "\nNumber of blanks = %d", nob ) ;
printf ( "\nNumber of tabs = %d", not ) ;
printf ( "\nNumber of lines = %d", nol ) ;
}