Posts

How do you become a successful web designer on Fiverr

Image
  There are lots of methods to design a website. You either create a new website or use software to transfer a website to your clients. Designing a new WordPress site from scratch is easier than imagined. You just have to install WordPress on your buyer’s host account through CPanel. Just click on any tool available on the host’s CPanel and then click on WordPress to install. The next step is to install a good theme. There are lots of PLR themes available and you can use anyone for your clients. Most of the themes come with all menus in the appropriate place so you just have to add the contents of the homepage the client provided you with and then paste. The same applies to other elements be it a squeeze page, sales page, etc. Another simple way is to design a webpage on your own host and then transfer it to your buyer’s server. Backup buddy is one software that can do the job for you. It simply backs up everything on your host and so all you need to do is to copy the page to your buye

locksmith service providers

There are a lot of companies which provide 24-hour locksmith service. You haven’t mentioned the area where you need locksmith service. You can do Google search and get a list of a locksmith company that provides 24-hour service in your area. If you are looking for a locksmith company in Concord NC or its surrounding areas call Locksmith Concord NC, they provide professional 24 by 7 locksmith service. locksmith service providers Emergency locksmiths will be available whenever you call upon them. They will be at your doorstep as soon as it is possible for them to be, and will provide you the service that you require immediately. This locksmith has all the emergency tools at their expense. Be it a burglary, a broken lock, a jammed door or whatever else, this locksmith is always ready with the kind of service you need, and the right tools to help them do their job. If you are looking for an emergency locksmith in Ottawa, Express Locksmith has to be your choice. They offer excepti

5 Android Viral Games That You Must Play In 2019

Image
Here we’ve listed some viral android games  that are increasingly gaining fame amongst all gamer. So have a look at the best new Android games that are released in the recent time if you had missed them. 1. Pubg PUBG Exhilarating Battlefield is one of two official titles based on PLAYERUNKNOWN'S BATTLEGROUNDS launched for the Asian market. This version, unlike PUBG Army Attack, is much closer to the original game by Bluehole Studio. The game drops you into a battle royale in which 100 real players face off in a closed environment until just one is left standing. To win, you have to wander around the island while collecting equipment that spawns in the playzone, which grows smaller and smaller to force players closer to one another. Pretty much all of the elements of the original game are present. Controls are similar but have been adapted to touch screens, and the interactive objects and elements of the game are the same. You can enter buildings, drive vehicles, an
Image
Program to calculate area of different shape in C using switch statement #include<stdio.h> void main () { int choice,r,l,b,base,h,area1,area2,area3; clrscr(); printf ("\n you can perform following operation:"); printf ("\n 1. Area of circle:"); printf ("\n 2. Area of rectangle:"); printf ("\n 3. Area of parallelogram;"); printf ("\n Enter your choice:"); scanf ("%d", &choice); switch ( choice ) {        case 1:        printf ("\n Enter value of radius:");        scanf ("%d", &r);        area1 = 3.14*(r*r);        printf ("%d", area1); break;        case 2:        printf ("\n Enter value of length:");        scanf ("%d", &l);        printf ("\n Enter value of breadth:");        scanf ("%d", &b);        area2 = l*b;        printf ("%d", area2); break;        case 3:        printf ("

Program for sorting of array element using bubble sort in C

Image
Program for sorting of array element using bubble sort in C What is sorting ? The term sorting means arrangement of element in particular order i.e in ascending or descending  order is known as sorting. Example:: 45,55,25,35,65 Sorted data :: 25,35,45,55,65 How bubble sort work ? Bubble sort method works on method of comparing two consecutive digits. 45,55,25,35,65 working:: 45,55,25,35,65 45,25,55,35,65 25,45,55,35,65 25,45,35,55,65 25,35,45,55,65 ( sorted data ) Program for bubble sort in c  #include<stdio.h> #include<conio.h> void main () { int i,j,n,t,a[100]; clrscr (); printf ("\n Enter size of array:"); scanf ("%d", &n); printf ("\n Enter element in array:"); for (i=0;i<n;i++) { scanf ("%d", &a[i]); } for (i=o;i<n-1;i++) { for (j=0;j<n-i-1;j++) { if (a[j]>a[j+1]) { t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } } printf (sorted array="); for (i=0;i<n;i++) {

Program to do binary search of element in C

Image
Program to do binary search of element in C What is searching ? It is defined as find data of a element. We use different types of searching techniques for searching an element.                Here we use binary search techniques in C. Program to do binary search of element in C #include<conio.h> void main () { int data[10],beg,mid,end,item,lb,ub,i; clrscr (); printf ("\n Enter 5 element in selected order:"); scanf ("%d", &item); beg=0; end=4; mid=(beg+end)/2; while(beg<=end && data[mid]!=item) {       if (item>data[mid])      {       beg=mid+1;       }       else        {       end=mid-1;        }       mid=(beg+end)/2; } if(beg<end) {    printf("\n location = %d",mid+1); } else {    printf("\n unsuccessful:"); } getch (); } OUTPUT ::  Enter 5 element in selected order = 25,45,65,75,85                  ITEM SEARCHED ; 45

Program in C to print different types of pattern

Image
Program in C to print different types of pattern For printing this type structure in C: * * * * * * * * *  * * *  * *  *  Here as we seen the figure is in row and column form thus we have to declare two variable ( i and j ) for row and column respectively. Here we use for loop statement of c. /* program to print structure */ #include<stdio.h> void main() { int i,j,n ; clrscr () ; printf ("\n Enter number of rows:") ; scanf ("%d", &n) ; for (i=1;i<=n;i++) { for (j=1;j<=n;j++) { if (i<=j) printf ("*") ; else  printf ("  ") ; } printf ("\n") ; } getch () ; } Output screen ::  Enter number of rows :: 5 output ::  * * * * * * * * *  * * *  * *  *