问题标签 [turbo-c++]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
7 回答
14307 浏览

c++ - int main() 函数必须在所有编译器中返回一个值吗?

为什么在某些 C++ 编译器中使用 int main() 时不需要包含 return 语句?那么 Turbo C++ 呢?

0 投票
1 回答
1440 浏览

c - turbo c ++中十六进制的右移运​​算符

以下代码在 turbo c++ 中打印 ff,而不是 15+1,如果我们使用
7+1 返回相同的答案 ff。
那么,turbo c++ 是否认为 x>> 8 和 x>>16 在 hexa 上是相同的,类似的东西?

0 投票
1 回答
2956 浏览

c++ - 如何显示非对角二维数组元素

我成功显示了对角线数组元素,但未能显示非对角线数组元素我尝试了很多但不成功。这是我正在尝试使用 Turbo C++ 的代码 -

示例:如果数组内容是

通过函数的输出应该是:

4 3 6 1 8 7 4 5

输出还显示了一些对角线元素。

0 投票
1 回答
80 浏览

algorithm - 对我的线性搜索算法感到困惑

我所知道的是线性搜索和顺序搜索是相同的,如果我的知识是正确的,那么请指导我下面的算法是否适用于线性搜索,因为它是一个顺序搜索算法。

  1. 初始化searcharray、searchno、length。
  2. 初始化 pos=0。
  3. 重复步骤 4 直到 pos<=length。
  4. 如果 searcharray[pos]=searchno
    返回 pos
    否则将 pos
    加 1。

其次,我需要有关如何在数组的第一个元素处移动找到的值的帮助

0 投票
5 回答
23970 浏览

c++ - How to copy turbo c++ output?

How to copy turbo c++ output? I already Googled the problem but in vain. It says press print scrn and paste or right click and mark all and paste. I tried the both but not working. The problem is that it's only copying what is present on the current screen. But I want the whole screen from the beginning. (alt+printscrn not working either). How can I tackle this situation.

none of them are working !!

for some reason i need this old way of programming i can't help with it but i would like to get a solution for the same . i have tried redirecting the output stream to the the file this way but it won't works .

0 投票
4 回答
49329 浏览

c - Bresenham的线描代码

我正在尝试使用 Bresenham 的算法在 C 语言中画一条线。我在 windows 7 的 dosbox 中使用 turbo C++ 来实现此代码。编译时我没有收到任何错误,但是当我运行代码时程序终止后获得2个坐标。请帮助..

编译消息如下.. 在此处输入图像描述

目录路径如下在此处输入图像描述

我的代码..

0 投票
5 回答
1368 浏览

c++ - 如何在 Turbo C++ 中显式调用类的析构函数

我试图在 Turbo C++ 中显式调用类的析构函数:

但它显示一个错误:

需要成员标识符。

有没有办法在 Turbo C++ 中显式调用析构函数?

0 投票
2 回答
312 浏览

c - C:Turbo C 编译器中 for 循环的异常行为

我知道这是一个愚蠢的问题,但我只是出于好奇而问这个问题。我刚刚在某处读到了这段代码:

输出:

这个循环在 Turbo C 编译器中执行一次,而在 gcc 中不工作,但是这个循环怎么可能执行一次呢?

如果有的话,您能否指导我了解该代码在 Turbo C 编译器中的异常行为?

0 投票
2 回答
4894 浏览

turbo-c++ - 如何在命令提示符下编译和运行 Turbo 编译器(Windows 7)

如果使用 DOSBox 在 Windows 7 中安装 turbo coplier,那么您如何通过命令提示符编译和运行。我试过使用环境变量-path设置。但是当我运行程序时

==================================== test.c

0 投票
1 回答
2706 浏览

c++ - Visual Studio中的编码错误比turbo C++ - C

我在 turbo C++ 编译器中编写了一个代码,现在我已经转到 Visual Studio Express 2012 for Windows Desktop 我得到了许多在 turbo C++ 中没有出现的错误错误是

我发现它不允许我使用 clrscr、sleep、textcolor、textbackground、gotoxy,它甚至不理解颜色名称所有这些过去都可以在 turbo C++ 中工作,我无法在 Visual Studio 中找到一种方法。也许我错过了一些设置,因为即使要创建 ac 项目,我也必须做很多事情,我已经根据以下内容创建了 ac 项目:http ://www.youtube.com/watch?v= bjHD1N7tjV4 然后粘贴了我的代码