Brief introduction
WIN-TC is a TC2 Windows Platform development tool. The software uses TC2 as the kernel, providing a Windows platform development interface, and therefore supports features under Windows platforms, such as cutting, copying, pasting, and finding replacements. And also has its unique features such as syntax highlighting, c inline assembly, custom extension library support, and so on. and provide a set of related auxiliary tools to make you more comfortable in the programming process, the more powerful. This software is used to write C language program WIN-TC simple and bilingual version can run normally in 98 and above the simplified and traditional Windows operating system WIN-TC is Turbo C 2.0 (referred to as TC2.0) an extension of the form, is based on TC2.0, enhanced system compatibility and sharing, allowing the copying and pasting of a number of functions can be operated with the mouse, more convenient than the TC2.0 use.
WIN-TC Main Features
1 to edit the TC code under Windows, you can make full use of Windows support clip and Chinese characteristics;
2 include and Lib path automatic positioning, farewell to the history of TC set path;
3 Compile Error capture function, do not appear annoying DOS window when compiling;
4) Support C Embedded assembly to achieve c/asm mixed programming;
5 Support C Extension Library (custom Lib library);
6 Error warning positioning function, a compile error when double-click the Output box error line information can automatically find the wrong line, just like the DOS TC;
7 support syntax highlight function, and can be customized settings;
8 There is no directory path restrictions, you can even install into a path folder with spaces;
9 Allow custom settings input style, can achieve VC similar input style;
10 can choose whether to generate ASM, map or obj files, you can even specify only to generate EXE files;
11 Stable file operation function, support the history record list and use the template;
12 undo and redo functions, and can set the maximum number of undo times according to their own memory (up to 999 times);
13 has the function of counting the rows, and can set the style.
Examples are as follows:
#include <stdio.h>
void Main ()
{
int k = Add_number (m);
K + + Add_number (m);
printf ("%d", k);
Getch ();
return 0;
}
int add_number (int n) {
static int i =;
i = = N;
return i;
}
The output of the example above is: 500 if the static is removed, the result is: 400