answersLogoWhite

0

What is a dosh header file in c?

Updated: 8/9/2023
User Avatar

Wiki User

11y ago

Best Answer

Not sure what dosh is but dos.h was used by Turbo C/C++ to handle DOS interrupts way back in the early 90s. DOS has largely been consigned to the history books now that Windows is an OS in its own right. Until 1995 it ran on top of DOS, the actual OS, but no-one in their right mind would consider running DOS programs in Windows in this day and age. Console applications are not DOS programs, they are fully-fledged Windows programs but without a fancy GUI.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

It contains type-definitions, constants, function-prototypes etc. Use the built-in help for details.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

There is no header file named as dosh...

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a dosh header file in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can you create a c program without using header file?

C programs do not require header files. If you want a C program without header files, you can simply not create them. However, you may or may not be able to include your non-header file source files.


How many types in header file in mathh header file in c language?

Look for typedef in it, but I don't think you will find any.


Explain about header files used in c language?

list of header files in c and function prototype associated with each file


What is the header files from random functions?

The header file for random functions ( like rand(), srand() ) is stdlib.h in C and cstdlib in C++.


How do you create a header file and implementation of code in another c file and both should be retrieved by another .c file?

tanga


How can you create a header file in c?

Use a text-editor.


More about hedder file in c?

For start: they are header files.


How do you include a system header file called sysheader.h in a c source file?

There is no system header called share.h, but if there were, it would be: #include <share.h>


A function is declared in C header file When you try to implement in a c source file it is giving error?

The source file must include the header file. Beyond that we can only guess at the problem without seeing the content of the source and header files. Do not post the files here. Such questions are better handled by the many C programming forums available elsewhere on the Internet.


How can you create a headerfile in a c?

Create the header file as a .h file in the same way you create a source file, .c and place it in the same directory as the .c files. To incorporate it, use the... #include "my_header_file.h" ... directive. Note that there are double quotes instead of greater/less signs. This tells the compiler to look first in the source directory.


What is the structure of c prgramming?

A header file , a main part and a body


How do you create an header file in c with example?

Any file can be called a header. Whenever someone uses #include , it's the same as copy/pasting that file in that spot. Typically though, they call it a header if it's included at the beginning of your source.