answersLogoWhite

0

What are the function of turbo c?

Updated: 8/17/2019
User Avatar

Wiki User

14y ago

Best Answer

It's an Integrated Developing Environment.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the function of turbo c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is return statement under function in turbo C?

return 0


What is gotoxy in turbo c?

A function, defined in conio.h. Use the help.


Where do turbo c programs begin excution?

At the first statement of function main.


What is the differentiate of turbo c from turbo c plus plus?

Turbo C compiles c source. turbo c++ compiles c++ source code.


How do you repair the black screen on turbo c?

With conio.h you can change the background color (function textbackground).


How do you include mysql header file in to turbo C to make connection?

Standard C does not provide such a function; it does not even require you to have an internet connection.


What is better turbo c or dev C?

Depends upon the personal opinion. They both are different IDE. Dev C used the MICGW compiler while Turbo C uses Borland compiler. Hence due to this, certain inbuilt functions will not work in Dev C. clrscr() is one such function. However Turbo C is outdated and does not use follow many of the programming standards.


How turbo c executes c as well as c?

turbo c cannot execute c++ as well..since c++ is the superset of c .the cprograms can be compiled in turbo c++.


Syntax of turbo c?

+ += - -= * *= / /= % %= = == != <= >= & && | ^ ~ << <<= >> >>= , [] () are the basic operator in TURBO C


What are the basic operator in turbo c?

+ += - -= * *= / /= % %= = == != <= >= & && | ^ ~ << <<= >> >>= , [] () are the basic operator in TURBO C


What is difference between Turbo and Borland C?

turbo is word to do the programming language in c & c++ and i do no about borland


What is difference function prototype and function define in turbo c?

In C, a function prototype is a declaration to the compiler that a certain function exists, without a full definition. This allows other functions to call that function. The linker will later make sure that a function definition actually exists (perhaps somewhere else), and will turn the call to the function to a call to the correct function.