Sunday, September 13, 2015

Typing practice with bubble game

Many of us played this game in typing tutor. Bubbles are falling from the top containing a  character in it. We need to type that character to make that bubble disappear. Same is here but there is no termination condition or scoring. To terminate the code press ESC key. Preview: //Typing practice with bubble game #include<stdio.h> #include<conio.h> #include<iostream.h> #include<stdlib.h> #include<dos.h> #include<graphics.h> #include<string.h> class...

MS Paint like program in C

MS Paint Editor in C. It is having four function Circle, Rectangle, Line and Pen. Using this four function you can design whatever you want. And later you can save it by taking screenshot of it. Preview: //MS Paint like program in C #include<graphics.h> #include<stdio.h> #include<conio.h> #include<dos.h> #include<iostream.h> #include<math.h> union REGS in,out; class draw { public: int x,y,click; int temp_click; ...

Graphic program to design a moving car

Car looks like : //Graphic program to design a moving car #include<stdio.h> #include<conio.h> #include<graphics.h> #include<dos.h> #include<stdlib.h> void car_body(int,int); void car_body1(int,int); void car_body2(int,int); void car_body3(int,int); void front_tyre(int,int,int,int); void rear_tyre(int,int,int,int); void tyre_rotation(int,int,int,int,int); int gd=0,gm,poly_cord[34],p1[4],p2[4],p3[4],midx,midy,i,k,j,r,x,y,mid,angle1,angle2; void...

Happy Birthday sound in C

//Happy Birthday sound in C #include<dos.h> #include<stdio.h> int main(void) { float g3=195,a3=220,c4=263,b3=247,d4=293,g4=393,e4=330,f4=351; sound(g3); delay(100); nosound(); sound(g3); delay(500); nosound(); sound(a3); delay(500); nosound(); sound(g3); delay(500); nosound(); sound(c4); delay(500); nosound(); sound(b3); delay(1000); nosound(); //delay(500); sound(g3); delay(100); nosound(); sound(g3); delay(500); nosound(); sound(a3); delay(500); nosound(); sound(g3); delay(500); nosound(); sound(d4); delay(500); nosound(); sound(c4); delay(1000); nosound(); sound(g3); delay(100); nosound(); sound(g3); delay(500); nosound(); sound(g4); delay(500); nosound(); sound(e4); delay(500); nosound(); sound(c4); delay(500); nosound(); sound(a3); delay(1000); nosound(); sound(g4); delay(100); nosound(); sound(g4); delay(500); nosound(); sound(f4); delay(500); nosound(); sound(c4); delay(500); nosound(); sound(d4); delay(500); nosound(); sound(c4); delay(500); nosound(); return...

Graphic program to design calculator

In this program I used C graphics. Not a big task, Only we need to know how to initialize Graphics then we can use inbuilt functions to design anything. initgraph() is the function used to initialize graphics available in graphics.h library. It takes three parameter first one is reference to graphic driver, second one is reference to graphic mode and the last one is BGI library path. Other functions I used are rectangle() to draw input box and buttons,...

Program to make arithmetic operations on complex numbers

//Program to make arithmetic operations on complex numbers #include<stdio.h> #include<conio.h> #include<process.h> int r1,r2,i1,i2,r,i,t,choice; char ch='y'; void add(); void sub(); void mul(); void div(); void main() { do { clrscr(); printf("enter real & imaginary of first number : \n"); scanf("%d%d",&r1,&i1); printf("enter real & imaginary of second number : \n"); scanf("%d%d",&r2,&i2); printf("\n"); clrscr(); printf("\t\t\tPress 1 for addition\n"); printf("\t\t\tPress...

Powered by Blogger.