Welcome to Onlinetunes24 .....
We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.
This is default featured post 1 title
We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.
This is default featured post 2 title
We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.
This is default featured post 3 title
We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.
This is default featured post 4 title
We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.
How to configure server settings (Dreamweaver CS5)
Remove windows is not genuine notification
Moving two circle above a line by Programming in C.
#include<conio.h>
#include<dos.h>
#include<graphics.h>
void main ()
{
int gd=DETECT, gm=DETECT, i,j,x,x2,y;
initgraph(&gd, &gm, "c:\\TurboC3\\bgi");
setcolor(RED);
delay (100);
line(100,161,600,161);
x=100;
y=150;
x2=600;
for(i=0, j=0; i<245,j<245; i+=5,j+=5)
{
circle(x+i, y, 10);
circle(x2-j, y, 10);
delay(100);
setcolor(BLACK);
circle(x+i, y, 10);
circle(x2-j, y, 10);
setcolor(RED);
}
rectangle(300,125,350,150);
rectangle(360,125,410,150);
getch();
}
National Flag of Bangladesh by programmign in C
#include<conio.h>
#include<graphics.h>
#include<dos.h>
void main()
{
int driver = DETECT, mode=0;
initgraph (&driver, &mode, "..\\bgi");
delay(1000);
printf ("\n\n\n\t\t\t National Flag of Bangladesh");
printf("\n\t\t\t Programmed by Mohammad Lukman Hussain");
delay(1000);
setcolor(2); /* Flag's Rectangle */
//rectangle(200, 150, 450, 300);
rectangle(200,150,400,250);
setfillstyle(1,2);
floodfill(325,225,2);
delay(1000);
setcolor(4); /* Flag's Circle */
//circle(325,225,50);
circle(300,200,30);
setfillstyle(1,4);
floodfill(300,200,4);
delay(1000);
setcolor(3); /* Flag's Stand */
rectangle(190,150,200,400);
setfillstyle(1,5);
floodfill(190,350,3);
delay(1000);
setcolor(3); /* Ground Stand */
rectangle(180,400,210,410);
rectangle(170,410,220,420);
rectangle(160,420,230,430);
delay(1000);
getch();
}