Feb 21, 2014

Keyword Position Tool

Search engine optimization goal- that coveted position in the top 3 results on search engines. It can take some time, but each milestone means you’re doing something right. Use this free tool to check your position in the top search engines for specific keywords to determine what is working, and what needs more work…

Enter one keyword per line in the first box, the domain/website to test in the second box, select the boxes for which search engines you want to check, select which page range you want to check, then click on “Check Position” and watch the tool do its thing!

Your domain: (example: smallseotools.com)


Search engines:

Page range:



More »


Your keywords:
Enter upto 20 keywords ( One keyword per line )


Seo Services, SEO Tools








Seo Services, SEO Tools

Results:   checking...

 

Aug 25, 2013

FLAG DESIGN BY GRAPHICS IN C

*/FLAG DESIGN BY GRAPHICS IN C/*

This is very easy coding for design flag by programming c. You can use it very easily. If you want to use this code self copy it and paste it turboo C soft. If you want to change this flag only change the color name and write there the color name that you choose and then Run it then you will see your wanted flag.

#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void main()
{
int driver,mode;
driver=DETECT;
mode=0;
initgraph(&driver,&mode,"c://tc//bgi");
setcolor(GREEN);
rectangle(40,80,600,400);
setfillstyle(1,2);
floodfill(320,240,GREEN);
setcolor(RED);
circle(300,200,100);
setfillstyle(1,2);
floodfill(320,240,RED);
getch();
}


And this output this graphics

Ok Now start your creation

Apr 22, 2013

Many Newspaper List

                Many Newspaper List

Now everyone can read many newspaper very easily. Here have many newspaper list. You can read your likely newspaper from here. Here have all Bangladeshi newspaper list. So now enjoy and read and read  more newspaper and know  more and more about Bangladesh.

Feb 2, 2013

Fibonacci Program OF 10 NUMBER




#include"stdio.h"
#include"conio.h"
#include"math.h"
void main()
{
clrscr();
int i,f0,f1=1,fibo;
printf("The Fibonacci Series is=");
for(i=1;i<=10;i++);
{
fibo=f0+f1;
printf("%d\t",fibo);
f1=f0;
f0=fibo;
}
getch();
}

Add of n number Program

/*Add of n number Program*/

#include"stdio.h"
#include"conio.h"
#include"math.h"
void main()
{
clrscr();
int i,n,average,sum=0;
printf("Enter the value of n=");
scanf("%d",&n);
for(i=1;i<=n;i++);
sum=sum+i;
average=sum/n;
printf("The Summation is=%d\n",sum);
printf("The Average is=%d",average);
getch();
}

The Series Program

/*The Series Program*/

#include"stdio.h"
#include"conio.h"
#include"math.h"
void main()
{
clrscr();
int i;
printf("The series is=");
for(i=1;i<=50;i++)
printf("\t%d",i);
getch();
}

Popular Posts