Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how to use dos.h with online GDB

+1 vote
asked May 27, 2022 by Igor RPS (130 points)
#include <dos..h> or

#include <dos> or

# include "dos.h"

NOT WORKING

1 Answer

0 votes
answered May 31, 2022 by Peter Minarik (86,180 points)

Dos.h is a Turbo C / Turbo C++ specific header. Set your language in the top right to be Turbo C / Turbo C++.

Why do you need dos.h anyway? Use the standard C/C++ libraries instead. :D

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...