MS-DOS
MS-DOS is an operating system commercialized by Microsoft. It was the most commonly used member of the DOS family of operating systems and was the dominant operating system for computers during the 1980s.
Application
Operating System
Remove
Language
License
Any
This message was edited by stober at 2006-3-5 16:56:5
: nah, way back when, people wrote their own OS's all the time.
I doubt it. computers in those times took up several stories of a building...
: This message was edited by stober at 2005-10-15 5:50:50
: : Hello
: :
: : I'm reading from a file steam with visual c++ 6.
: : I have declared the struct:
: :
: : typedef struct {
: :...
This message was edited by stober at 2005-10-15 5:50:50
: Hello
:
: I'm reading from a file steam with visual c++ 6.
: I have declared the struct:
:
: typedef struct {
: unsigned...
ren myfile.exe myfile.aaa
3. to do that with c program
rename("myfile.exe","myfile.aaa");
There are several other ways too.
: Does C have a locate function like the LOCATE command in QBasic? If so, what is it?
:
short answer -- no. A little longer answer -- depends on the operating system and the compiler. Turbo C...
: It doesn't really HAVE to be the address 0x265dda4. It could be anything. My point is, is there any way that C++ can write to a specific address? Arigato.
:
:
Can't do it with any 32-bit...
: How to you write C code that will be used for C51 micro dallas 80c320. If there are LED connected on Port0 and you want to turn them on in any manner, one by one or any siquence. The compiler that...
How to you write C code that will be used for C51 micro dallas 80c320. If there are LED connected on Port0 and you want to turn them on in any manner, one by one or any siquence. The compiler that i...
: hi! Can anybody help me on accessing files using fopen in c.
: I always get different problems like getting null char even if file exist,getting spaces when i read the file.what is handle ? how it...
: Is it possible?
:
not with any normal c or c++ compiler for either unix, MS-DOS or Windows. If you just want a .bin extension, just rename it. But then it won't execute under any of the...
You would need to create another thread only if you want a function to wake up at specific time intervals. And its the same with MS-dos -- you don't need the clock interrupts if all you want to do...
: I want to know how to put a timer like a game timer in my game made in c
: please give me a concrete example...
:
depends on the OS. If you are writing for MS-DOS 6.X, then you will have to...
This message was edited by stober at 2003-2-28 5:16:10
: Thanks greatly for that revalation ! But in a way i'm a bit disappointed in win32, cuz how can i do with ease all those beautiful fnc's like...
: What should I type in C to clear text the screen from text(in MS-DOS programs).
:
Some compilers come with a function called "clrscr" which I belive is in the header conio.h or whatever it's new...