Blog Archives

TeamViewer 6.0.1 Portable

ß7 TeamViewer Portable 6.0.1

TEAMVIEWER 6.0.1

MEDIAFIRE LINK

  • While most competitors offer different packages for remote support, remote administration, training and sales.
  • With TeamViewer you can remotely control any PC anywhere on the Internet. No installation is required, just run the application on both sides and connect – even through tight firewalls.
  • TeamViewer can also be used to control unattended computers and servers. System service installations even allow remote reboot and reconnect.
  • TeamViewer allows you to present your desktop to a partner. Share live demos, products, and presentations over the Internet within seconds.
  • TeamViewer comes with integrated file transfer that allows you to copy files and folders to and from a remote partner – which also works behind firewalls
  • The major difficulties in using remote control software are firewalls and blocked ports, as well as NAT routing for local IP addresses.
    If you use TeamViewer you don’t have to worry about firewalls: TeamViewer will find a route to your partner.
  • eamViewer is a very secure solution. All versions feature completely secure data channels with key exchange and AES (256 Bit) session encoding, the same security standard used by https/SSL.
  • On the road and need to control a remote computer? Why don’t you use TeamViewer Web Connector? The purely html and flash based solution can be used from nearly any browser and operating system.

Unlock Net Setter (Dongle)

DOWNLOAD BELOW SOFTWARE TO UNLOCK NET SETTER OR DONGLE OF AIRTEL, IDEA, VODAFONE, DOCOMO ETC.

ZTE JOIN AIR 1.0

MEDIAFIRE LINK

“THIS SOFTWARE IS TESTED IN VODAFONE NET SETTER.”

REPLY IF SOFTWARE IS NOT WORKING IN YOUR DONGLE.

ACCESS POINT LIST OF DIFFERENT INTERNET PROVIDER .

IF YOU ARE UNABLE TO UNLOCK THROUGH THIS SOFTWARE,PLEASE VISIT THIS LINK FOR DOWNLOAD ANOTHER UNLOCK SOFTWARE…

STAY TUNE VITH US…

Sum Of Given Digit Using While Loop – C PROGRAMME

17. Sum Of Given Digit Using While Loop

// sum of digits of given no
#include
#include

void main()
{
int n,r,q,sum=0;
clrscr();

printf("Enter Digit :=");
scanf("%d",&n);

while(n>0)
{
r=n%10;
q=n/10;
sum=sum+r;
n=q;
}

printf("%d",sum);

getch();

}

To Display Fibonacci Series – C PROGRAMME

16. To Display Fibonacci Series

// Fibonacci series
#include
#include

void main()
{
int n=0,count=0,t=0,t1=0,t2=1;
clrscr();

printf(“enter value :=”);
scanf(“%d”,&n);

printf(“\n %d, %d, “,t1,t2);

while(count!=n)
{
t=t1+t2;
t1=t2;
t2=t;

printf(“%d, “,t);
count++;
}

getch();
}

Given Number Is Prime Number Or Not Using If….Else – C PROGRAMME

15. Given Number Is Prime Number Or Not Using If….Else

// given no is prime or not
#include
#include

void main()
{
int i=2,flag=1,n=0;
clrscr();

scanf(“%d”,&n);

if(n<2)
{
printf("it is not prime no\n");
}

else
{

while(i<n)
{
if(n%i==0)
{
flag=0;
}

i++;
break;
}

}

if(flag==1)
{
printf("it is prime no");
}

else
{
printf("it is not prime no");
}

getch();

}

Follow

Get every new post delivered to your Inbox.

Join 48 other followers