I am making program using qbasic................ give me some tips

Try this:

http://www.tedfelix.com/qbasic/

Sure! Here are some tips for programming in QBasic:

1. Understand the basics: Make sure you have a good understanding of QBasic's syntax, keywords, and language features. You can refer to the QBasic documentation or online tutorials to familiarize yourself with the fundamentals.

2. Plan your program: Before diving into coding, take some time to plan out the structure and flow of your program. Identify the main tasks or functionalities you want to implement and break them down into smaller, manageable parts.

3. Use comments: Incorporate comments within your code to explain what different sections or lines of code do. This will make your program more readable and easier to understand, especially if you revisit it later or share it with others.

4. Test incrementally: As you write your program, test it regularly and incrementally. Start with small sections of code and test their functionality before moving on to the next part. This will help you catch and fix errors early on and make debugging easier.

5. Handle errors gracefully: Implement error handling in your program to handle unexpected situations or input errors. QBasic provides error handling mechanisms like ON ERROR GOTO and RESUME to help you handle runtime errors and prevent program crashes.

6. Use proper programming techniques: Follow good programming practices, such as modular design, proper variable naming conventions, and code reuse. Break your program into separate functions or subroutines to improve maintainability and readability.

7. Utilize user interface features: QBasic provides built-in functionality for creating user interfaces. Take advantage of these features to enhance the usability and visual appeal of your program. Use menus, dialog boxes, and graphics to create a more interactive experience.

8. Seek help and resources: If you encounter difficulties or have specific questions, don't hesitate to seek help from online forums, QBasic communities, or programming guides. There are numerous resources available that can provide insight and solutions to common programming problems.

Remember, practice and experimentation are essential to becoming proficient in QBasic. Don't be afraid to try new things, explore the language's capabilities, and have fun with your programming project!