Pages

MUSLIM BABY BOY NAMES

Friday, November 18, 2011

To Download Muslim Baby Names Click HERE

Theory of computation

Monday, November 14, 2011


University: MG
Stream: BTECH CS
Semester: S7
To download click the link below
Module I.doc
Module II.doc
Module III.doc
Module IV.doc
Module V.doc

Web Technology Notes(NEW)

Thursday, November 10, 2011


University : MG
Stream  : Btech CS/IT
Semester :S7
Subject :Web Technology(Contains 5 modules)
Downlad Link: Click here

C GRAPHICS PROGRAM FOR MAN ENTERING CHURCH

Monday, October 17, 2011

Following is c graphics program to display  man entering in to a church on screen. To run this please change the bgi directory.

#include
#include
#include
void main()
{
 int gd,gm,i,j=0;
 gd=DETECT;
 initgraph(&gd,&gm,"c:\\turboc3\\bgi");
 clrscr();
 for(i=0;i<=270;i=i+15)
 {
  cleardevice();
  j++;

  setcolor(11);
  setfillstyle(1,11);
  rectangle(350,200,425,400);         //main wall
  floodfill(351,201,11);
  setcolor(6);
  setfillstyle(1,6);
  rectangle(365,225,410,400);         //door
  floodfill(366,226,6);
  setcolor(7);
  setfillstyle(1,7);
  rectangle(425,250,600,400);         //side wall
  floodfill(426,251,7);
  rectangle(382,200,393,100);         //vertical bar of cross
  rectangle(370,127,405,138);         //horizontal bar of cross
  if(j%2!=0)
  {
   setcolor(15);
   setfillstyle(1,0);
   ellipse(100+i,260,0,360,10,17);        //man head
   fillellipse(100+i,260,10,17);
   line(100+i,277,100+i,330);               //man body
   line(100+i,330,75+i,360);                //man left leg
   line(100+i,330,125+i,360);               //man right leg
   line(80+i,295,120+i,295);                //man hands
  }
  else
  {
   setcolor(15);
   ellipse(100+i,260,0,360,10,17);        //man head
   line(100+i,277,100+i,330);               //man body
   line(100+i,330,95+i,360);                //man left leg
   line(100+i,330,105+i,360);               //man right leg
   line(80+i,295,120+i,295);                //man hands
  }
  sleep(1);
 }
 cleardevice();

  setcolor(11);
  setfillstyle(1,11);
  rectangle(350,200,425,400);         //main wall
  floodfill(351,201,11);
  setcolor(6);
  setfillstyle(1,6);
  rectangle(365,225,410,400);         //door
  floodfill(366,226,6);
  setcolor(7);
  setfillstyle(1,7);
  rectangle(425,250,600,400);         //side wall
  floodfill(426,251,7);
  rectangle(382,200,393,100);         //vertical bar of cross
  rectangle(370,127,405,138);         //horizontal bar of cross
 getch();

}

OUTPUT

C GRAPHICS PROGRAM FOR ANALOG CLOCK

Following is c graphics program to display analog clock on screen. To run this please change the bgi directory.




#include
#include
#include
#include
void main()
{
int gd=DETECT,gm;
int x=320,y=240,r=200,i,h,m,s,thetamin,thetasec;
struct  time t;
char n[12][3]={"3","2","1","12","11","10","9","8","7","6","5","4"};
initgraph(&gd,&gm,"c:\\turboc3\\bgi");//put the directory which contains egavga.bgi
circle(x,y,210);
setcolor(4);
settextstyle(4,0,5);
for(i=0;i<12;i++)
{
if(i!=3)
outtextxy(x+(r-14)*cos(M_PI/6*i)-10,y-(r-14)*sin(M_PI/6*i)-26,n[i]);
else
outtextxy(x+(r-14)*cos(M_PI/6*i)-20,y-(r-14)*sin(M_PI/6*i)-26,n[i]);
}
gettime(&t);
printf("The current time is: %2d:%02d:%02d.%02d",t.ti_hour, t.ti_min,t.ti_sec, t.ti_hund);
while(!kbhit())
{
setcolor(5);
setfillstyle(1,5);
circle(x,y,10);
floodfill(x,y,5);
gettime(&t);
if(t.ti_min!=m)
{
setcolor(0);
line(x,y,x+(r-60)*cos(thetamin*(M_PI/180)),y-(r-60)*sin(thetamin*(M_PI/180
)));
circle(x+(r-80)*cos(thetamin*(M_PI/180)),y-(r-80)*sin(thetamin*(M_PI/180))
,10);
line(x,y,x+(r-110)*cos(M_PI/6*h-((m/2)*(M_PI/180))),y-(r-110)*sin(M_PI/6*h
-((m/2)*(M_PI/180))));
circle(x+(r-130)*cos(M_PI/6*h-((m/2)*(M_PI/180))),y-(r-130)*sin(M_PI/6*h-(
(m/2)*(M_PI/180))),10);
}
if(t.ti_hour>12)
t.ti_hour=t.ti_hour-12;
if(t.ti_hour<4)
h=abs(t.ti_hour-3);
else
h=15-t.ti_hour;
m=t.ti_min;
if(t.ti_min<=15)
thetamin=(15-t.ti_min)*6;
else
thetamin=450-t.ti_min*6;
if(t.ti_sec<=15)
thetasec=(15-t.ti_sec)*6;
else
thetasec=450-t.ti_sec*6;
setcolor(4);
line(x,y,x+(r-110)*cos(M_PI/6*h-((m/2)*(M_PI/180))),y-(r-110)*sin(M_PI/6*h
-((m/2)*(M_PI/180))));
circle(x+(r-130)*cos(M_PI/6*h-((m/2)*(M_PI/180))),y-(r-130)*sin(M_PI/6*h-(
(m/2)*(M_PI/180))),10);
line(x,y,x+(r-60)*cos(thetamin*(M_PI/180)),y-(r-60)*sin(thetamin*(M_PI/180
)));
circle(x+(r-80)*cos(thetamin*(M_PI/180)),y-(r-80)*sin(thetamin*(M_PI/180))
,10);
setcolor(15);
line(x,y,x+(r-70)*cos(thetasec*(M_PI/180)),y-(r-70)*sin(thetasec*(M_PI/180
)));
delay(1000);
setcolor(0);
line(x,y,x+(r-70)*cos(thetasec*(M_PI/180)),y-(r-70)*sin(thetasec*(M_PI/180
)));
}
}

OUTPUT

Gate Mathematics Books

Sunday, October 16, 2011

Gate Mathematics Books collection
Just click on the link below to download mathematics books.

Following books of mathematics are in djvu file format, to read this book u have to download djvu reader so i give u one link to download djvu reader. if u got any problem then comment here.



AdvancedEngineeringMaths-Kreyzig
download
ROSEN
Discrete mathematics and it's applications 6th Edition
download

Graph.Theory Narisng Deo
download

Schaum's Outline of Differential Equations
download

Differential calculus schaum series
download

Schaum outline DiscretMath
download

DJVU reader....
download

Gate Computer Science & Information Technology Books

Hiiiiiiiiiiiii Guys ..Download Gate Computer Science Books................ here


just click on the links below to download books...



Operating System Books


Galvin 5th edition
download

Galvin 6th Edition
download

or
download


William Stalling
download


Handout
download


Tanenbaum
download


Computer Architecture Books


William Stallings
download

Tanenbaum
download

Hennessy Patterson
download

CG LAB ALGORITHMS


Cg lab programs are uploaded to my 4shared account. To download click here

ASP NET DROPDOWN LIST OF COUNTRY NAMES

Tuesday, October 11, 2011


ASP net dropdown list with country name. You can add this bit of code in your ASP net form for selecting countries

Web Technology

Modern Communication System

Friday, October 7, 2011


Modern Communication System study materials available on net are uploaded to 4shared. Those who want it please download it from below links

Course Material for module 3.doc
Course Material for Module -1.doc
Course Material for Module 2.doc
Course Material for Module 4.doc
Course Material for module 5.doc

Computer Graphics Study Materials Available on Net

 

Most Reading