Click here to Skip to main content
15,900,258 members
Everything / Turbo

Turbo

Turbo

Great Reads

by ToughDev
A look at Borland Turbo C/C++
by ToughDev
How to develop PC-speaker MIDI player for IBM PC XT

Latest Articles

by ToughDev
How to develop PC-speaker MIDI player for IBM PC XT
by ToughDev
A look at Borland Turbo C/C++

All Articles

Sort by Score

Turbo 

12 Jan 2013 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
23 Dec 2016 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
23 Dec 2016 by Jochen Arndt
What you are looking for is a "bignum" library (for integers) or a high-precision floating point library.Just search for these terms. But you might not found one that works out-of-the-box with the old Turbo-C++ compiler. So you have to the build the library from the sources and apply...
16 Sep 2010 by #realJSOP
Wow - TurboVision. I haven't heard that name in a LONG time (1989 to be exact).
22 Mar 2011 by JF2015
Best book for C has always been and will always be the book by both creators of the language: Brian Kernighan and Dennis RitchieSee here for the Book:http://en.wikipedia.org/wiki/The_C_Programming_Language[^]
6 Nov 2011 by Andrew Brock
The format of the MBR can be found at Wikipedia[^]In code these look like //These structures must be packed with 0 bytes padding.//I think the keyword "packed" does this on the turbo compilertypedef packed struct _Partition { BYTE status; //0x80 for bootable, 0x00 for not bootable,...
6 Nov 2011 by Richard MacCutchan
Do not write into the MBR unless you are absolutely certain that you know what you are doing. The chances of making your system unusable are quite high.
29 Nov 2014 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
30 Nov 2014 by Stefan_Lang
1. look up the formula(s) required to calculate the expected return value from these inputs2. translate these formulas into a series of C/C++ operations; use local variables to hold temporary values if needed3. understand and fix any compiler errors and warnings that you may encounter4....
23 Dec 2016 by Patrice T
Quote:Multiplying large numbers in divide and conquer methodAs far as I understand your question, there is no "divide and conquer method" to multiply 2 large numbers. Details may vary, but there is basically 1 method.Quote:Other friends say to me it solved with arrays An array is the way to...
16 Sep 2010 by aayu
http://www.cas...
16 Sep 2010 by Richard MacCutchan
This[^] may be what you are looking for.
30 Jan 2011 by OriginalGriff
We can't just give you code for this: it will depend on what image type you are trying to read:.JPG internal format is totally different from .BMP for example.C does not have the high-level routines to read an image file - you have to read the file format and process it...
30 Jan 2011 by Richard MacCutchan
See here[^] for all the Microsoft support libraries for graphics. You may also need to Google for specifics on some graphics structures.
22 Mar 2011 by Gagan Murghai
Hello All,I have learn C language a way back for few months. i want to become proficient with C with all the basic and advance techniques. Please suggest the Best book to learn C language please. Thanks,Gagz
22 Mar 2011 by Mahendra.p25
You can try http://www.scribd.com/doc/2338140/Let-Us-C-Yashwant-Kanetkar[^]
22 Mar 2011 by LaxmikantYadav
The C Programming Language by Brian W. Kernighan, Dennis M. RitchieC Programming: A Modern Approach by K.N. KingC Programming in 12 Easy Lessons by Greg PerryC for Dummies Vol. I & II by Dan Gookin
6 Nov 2011 by Naresh Kumar
Can any one tell me the code to access and amend the MBR with Turbo C. Pls give me a brief for that.
21 Feb 2012 by Yburmisha
Our instructor gives us a project defense on Turbo C using File Processing for the first time. He hadn't given us example yet on this.
21 Feb 2012 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
14 Jan 2013 by analogx
WELL people here certainly dont do your homework...but to get you started,here is the problem broken,now go figure it out1.get your birthday as input2.taking the above input,calculate the date as numbered day of year eg like 205 th day of year...3.then check,using above number and current...
14 Jan 2013 by CPallini
There are just two tricky details in you task, namely Wrap around.Leap years.For simplicity, let's suppose that neither wrap around nor leap year case is happening then, with just an array (days per month) and simple operations you may easily find the result.
18 Apr 2015 by Member 11522139
i need a visualisation of sorting project in c language with animation
18 Apr 2015 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
27 Mar 2016 by Member 12419036
A program that will create a movie seat reservation. The program will display the summary seats and its status. The user will be ask what seat no. to be reserved, then it will go back again to the summary to display the updated seat status. If the seat no. is already reserved then it will prompt...
27 Mar 2016 by OriginalGriff
"I have an algo in mind but I can't put it into code."Well, then get some paper and a pen and follow your algorithm manually.The paper is the variables you need, and you are the code - so write down each step of what you have to do to make it work yourself.Then it should be obvious what...
12 Oct 2017 by KarstenK
A nice pasword implementation which works as Jochen proposed, but with other function. (to close the Q&A)
17 Aug 2018 by Member 13952844
i am getting a error lvalue error on this code: gotoxy(36,12); for(int i=0;i
17 Aug 2018 by OriginalGriff
Look at your code: you edited it using a word processor, not an editor - so your quotes aren't quotes, your double quotes aren't double quotes, and (as has been mentioned by Jochen) '' isn't a character anyway. Use a "proper" editor - Notepad if you are really desperate, but most C++ systems...
2 May 2023 by OriginalGriff
To add to what Dave has - rightly - said, the way I'd do it is to have a background image which I copy each frame, then draw the car onto the copy at each it's current position. Then swap the current image for the new copy and it'll appear to...
5 May 2023 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...
5 May 2023 by merano99
The task can be solved easily if you look at how you would write it down as a human. It is best to solve it in such a way that it also works for longer outputs. 1 2 1 3 2 1 4 3 2 1 4 3 2 4 3 4 Obviously, the longest line is N characters long....
7 May 2023 by ToughDev
A look at Borland Turbo C/C++
2 May 2023 by Dave Kreskowiak
If you're talking about rendering an animation, you have to redraw everything EVERY FRAME of the animation, with objects in their new locations, like your car. You cannot just "remove the car" and expect it to reveal the background. Once you draw...
29 Nov 2014 by Hapisha
how to find the norm of a function of type |XY|function(int n, double **X, double *Y, double *norm){ //write the code to find the norm }where n = number of iterationY = pointer to dX = double pointer to Bnorm = output
12 May 2023 by ToughDev
How to develop PC-speaker MIDI player for IBM PC XT
3 Apr 2015 by Member 11578328
Change Your Settings in OPTIONS->LINKER->LIBRARIES as follows:[ ] Container Class[ ] Turbo Vision[X] Graphics library[X] Standard Run TimeHit OK
12 Jan 2013 by Member 9751964
write a program in c++ to calculate the remaining days of my birthday in current days
23 Dec 2016 by masoud tohidy
hi i wont to multiplying large numbers in divide and conquer method with turbo c++i need itplease help meWhat I have tried:i solve it with long number to 10 digiti want it for +10 digit Other friends say to me it solved with arrays
5 May 2023 by Ae Jae
Turbo c++(for loop) Using (stdio.h & conio.h) header Output: 1 2 1 3 2 1 4 3 2 1 4 3 2 4 3 ...
2 May 2023 by Ae Jae
I program a moving car and a bike in a road with mountains but the moving car is having afterimages, when I put a cleardevice() function the afterimages will be removed alongside with its background. What I have tried: I tried searching for...
16 Sep 2010 by sureshpathi10
I need TV.LIB file for my TURBO C ... :sigh: I can't execute my graphics program :(( with out this file. I'm getting erro like "unable to open tv.lib" :mad:Please help me out of this issue.. if you have this file, please send it to [email address removed].Thanks in Advance, :-\...
2 Dec 2016 by jyoti agarwal
I have to make a program to read the R,G,B colour of an image. Please tell me the code for reading an image.
18 Jan 2017 by getaccessyr
HI Richard,Ya I Got what u r exactly saying:Please find my code here:IF OBJECT_ID('tempdb..#test') IS NOT NULL /*Then it exists*/ DROP TABLE #testdrop table #testcreate table #test( Name varchar(4000),id varchar(2000));insert into #testselect 'See...
12 Oct 2017 by hesiod zxcv
I need a log in system that has a 3 attempts log in, and the password should be "*" Please help me. I have a code here but i dont know how to input a password to "*" Please help.What I have tried:#include#include#includevoid main(){char...