This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| #include<dos.h> | |
| #include<math.h> | |
| void main() | |
| {clrscr(); | |
| int g=0,d; | |
| initgraph(&g,&d,"c:\turboc3\bgi"); | |
| setbkcolor(15); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include | |
| #include | |
| #include | |
| #include | |
| #include | |
| void main() | |
| { | |
| int g=0,d; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| #include<dos.h> | |
| #include<math.h> | |
| void main() | |
| { | |
| int g=0,d; | |
| initgraph(&g,&d,"c:\turboc3\bgi"); | |
| settextstyle(16,0,0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream.h> | |
| #include<conio.h> | |
| void main() | |
| { | |
| clrscr(); | |
| int number,result,var=0; | |
| cout<<"Enter number to generate table:"; | |
| cin>>number; | |
| while(var<number*10) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<process.h> | |
| #include<iostream.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| #include<dos.h> | |
| int j=10; | |
| void mhli() | |
| { | |
| int g=DETECT,d; | |
| initgraph(&g,&d,"c:\turboc3\bgi"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| #include<process.h> | |
| #include<math.h> | |
| #include<dos.h> | |
| void main() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream.h> | |
| #include<conio.h> | |
| #include<dos.h> | |
| #include<time.h> | |
| #include<process.h> | |
| void main() | |
| { | |
| clrscr(); | |
| char s; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream.h> | |
| #include<conio.h> | |
| void twentyfour_to_twelve() | |
| { | |
| int hours,min; | |
| cout<<"ttTIME CONVERSION FROM 24 HOURS TO 12HOURS"; | |
| cout<<"ntt======================================="; | |
| cout<<"nnttttEnter hours:"; cin>>hours; | |
| cout<<"nttttEnter Minutes:"; cin>>min; | |
| cout<<"nttt Time in 24 hours:"<<hours<<":"<<min; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| This software is the sound based software on c++ which is use blow sounds after a particular time or when the user press any key , therefore it is use as the buzzer in contests. This is the link of the alarm developed by me ! | |
| https://www.youtube.com/watch?v=r198d7G3ddU | |
| */ | |
| #include<dos.h> | |
| #include<conio.h> | |
| #include<iostream.h> | |
| #include<time.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| #include<dos.h> | |
| void main() | |
| { | |
| int key, graphics = 0, detect; | |
| initgraph(&graphics, &detect, "c:turboc3bgi"); | |
| for (int i = 0; i <= 600; i += 40) { | |
| bar(i, 200, i + 30, 400); |