Skip to main content

Posts

Turbo C++ for Windows 7 64 bit

 Its a very simple guide to install Turbo C++ on Windows 7 64 bit  operating system. Follow the steps below to install Turbo C++ compiler on your windows 7 ,64 bit operating system. Note - Please let me know whether the process is working for you or if you are getting some kind of error. Step 1) Install the software DOSBOX version 0.73(Search for it in the search bar). Step 2) Create a folder on your C drive, e.g.Turbo; (c:\Turbo\) Step 3) Extract TC into the created folder(e.g. c:\Turbo\);(you can search and download it) Step 4) Run the application DOSBOX 0.73,previously downloaded and installed. Step 5) Type the following commands at the command prompt that will appear, [z]: mount d c:\Turbo\ Following this you will get a message "Drive D is mounted as local directory c:\Turbo\" Step 6) Type d: to shift to d: Step 7) Then type commands mentioned below; cd tc cd bin tc or tc.exe Step 8) In the turbo C++ go to Options\Directories\ Chang...

Seminar Topics(100)

Excellent Seminar/Paper Presentation Topics for Students Put the desired topic name in search bar to get detail search about the topic. 1. 4G Wireless Systems 2. A BASIC TOUCH-SENSOR SCREEN SYSTEM 3. Artificial Eye 4. Animatronics 5. Automatic Teller Machine 6. Aircars 7. Adding interlligence to ineternet using satellite 8. ADSL 9. Aeronautical Communications 10. Agent oriented programing 11. Animatronics 12. Augmented reality 13. Autonomic Computing 14. Bicmos technology 15. BIOCHIPS 16. Biomagnetism 17. Biometric technology 18. BLUE RAY 19. Boiler Instrumentation 20. Brain-Computer Interface 21. Bluetooth Based Smart Sensor Networks 22. BIBS 23. CDMA Wireless Data Transmitter 24. Cellonics Technology 25. Cellular Positioning 26. Cruise Control Devices 27. Crusoe Processor 28. Cyberterrorism 29. Code division duplexing 30. Cellular Digital Packet Data 31. Computer clothing 32. Cordect WLL 33. CARBIN NANO TUBE ELEC...

Use Flowcharts(Tip)

FLOWCHART Use a flowchart to represent the logic of your program before coding.This will reduce lot of redundancy and helps improve your logic. In fact, even if you don't use a flow chart, but sure to spend some time thinking about your program design before diving in and writing code. If any questions and queries regarding flowchart,write in the comment box.

C Program to calculate roots of quadratic equations

C Program to calculate roots of quadratic equations This is a simple C program to calculate roots of quadratic equations.A function sqrt() is used in this program to find the square root.Also, we will have to include the math.h header. #include #include main() { int a,b,c,d; float root1,root2; printf("Enter the values of a,b,c"); scanf("%d%d%d",&a,&b,&c); d=b*b-4*a*c; root1=((-b)+sqrt(d))/(2*a); root2=((-b)-sqrt(d))/(2*a); printf("root1=%f and root2=%f",root1,root2); }

Program to Propose a girl(Funny)

Ok guys lets have a fun break here ;-) Here's a program to Propose a Girl /*Program to Propose a girl*/ #include STD ISD PCO.h #include mobile.h #include sms.h #include love.h #define Cute beautiful_lady main() { goto college; scanf("100%",&ladies); if(lady ==Cute) line++; while( !reply ) { printf("I Love U"); scanf("100%",&reply); } if(reply == "GAALI") main(); /* go back and repeat the process */ else if(reply == "SANDAL ") exit(1); else if(reply == "I Love U") { lover =Cute ; love = (heart*)malloc(sizeof(lover)); } goto restaurant; restaurant: { food++; smile++; pay->money = lover->money; return(college); } if(time==2.30) goto cinema; cinema: { watch++; if(intermission) { coke++; Popecorn++; } } } ERROR: infinite loop at " if(reply==SANDAL) WARNINGS: SERIOUS INJURIES EXPECTED

C Program using While loop to Convert Fahrenheit to Celsius

This is a C program to convert Fahrenheit to Celcius. Let us take a look at the program . This can be easily accomplished with a for loop or a while loop: #include int main() { int a; a = 0; while (a { printf("%4d degrees F = %4d degrees C\n", a, (a - 32) * 5 / 9); a = a + 10; } return 0; } If you run this program, it will produce a table of values starting at 0 degrees F and ending at 100 degrees F. The output will look like this: 0 degrees F = -17 degrees C 10 degrees F = -12 degrees C 20 degrees F = -6 degrees C 30 degrees F = -1 degrees C 40 degrees F = 4 degrees C 50 degrees F = 10 degrees C 60 degrees F = 15 degrees C 70 degrees F = 21 degrees C 80 degrees F = 26 degrees C 90 degrees F = 32 degrees C 100 degrees F = 37 degrees C The table's values are in increments of 10 degrees. You can see that you can easily change the starting, ending or increment values of the table that the p...

Good Programming habits

Some of good programming habits: 1. Before sitting down for coding, you must have formal or a paper-napkin design of the solution to be coded. Never start coding without any design unless the code is trivial one. 2. Good code documentation is as important as good knowledge of a programming language. Write brief logic for each major block of your code as comments in source code file itself. Its good to mention creation and modification dates of your program along-with why modification was required. 3. Maintaining versions of your program is another important task. Some present-day programming tools already have a built-in version management. Whenever you make any change to your program, they save its copy as .bak file.