answersLogoWhite

0


Best Answer

Yes, you can use for-loop in a C program compiled by Turbo C.

User Avatar

Wiki User

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

Wiki User

14y ago

int main (int argc, char *argv[])

{

int i;

for (i=1; i<argc; ++i) printf ("%2d. '%s'\n", i, argv[i]);

}

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Example program arrays in turbo c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is there any purpose to the parts of a turbo c plus plus program?

Yes.


What has the author Eric P Bloom written?

Eric P. Bloom has written: 'The Turbo C++ trilogy' -- subject(s): C (Computer program language), C++ (Computer program language), Turbo C (Computer file), Turbo C++ 'Turbo C Plus Plus Trilogy' 'The C trilogy' -- subject(s): C (Computer program language)


What are the differences of turbo c plus plus and mother program?

No idea what mother program is, but I assume you mean how does Turbo C++ compare to the ISO C++ standard. The last version of Turbo C++ came out in 2006 and was compliant with the standard at that time. However, Embarcadero (the current owners) no longer support Turbo C++, thus it no longer complies with the current ISO standard.


What are the Example Output of Calculator Program in C plus plus?

example output of c++ calculator


A program for queue ADT by using arrays in c plus plus?

Arrays are not suitable for implementing queues because while they are ideal for adding to the end, the are not ideal for extraction from the beginning. For that you need a deque. Regardless, the STL (standard template library) already provides an efficient queue ADT in std::queue.


How the turbo c plus plus use in the computer?

How the turbo c plus plus use what in the computer.


What has the author Tom Swan written?

Tom Swan has written: 'Mastering Turbo Pascal' -- subject(s): Pascal (Computer program language), Turbo Pascal (Computer program) 'Mastering Turbo Pascal6' -- subject(s): Pascal (Computer program language), Turbo Pascal (Computer file) 'Tom Swan's C[plus plus] primer' -- subject(s): C++ (Computer program language) 'Mastering Windows programming with Borland C[plusplus] 4' -- subject(s): Borland C., Windows (Computer file) 'Fraternity and evolution' 'Edward Carpenter' 'Mastering Borland C[plus plus]' -- subject(s): C 'Mastering Turbo Pascal 4.0' 'Delphi 4 bible' -- subject(s): Client/server computing, Computer software, Delphi (Computer file), Development, Pascal (Computer program language), Object Pascal, Pascal (programming language) 'Tom Swan's Mastering Borland C[plus plus] 5'


Array implementation of priority queue example program in c plus plus?

yes


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

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


Who develop the turbo c plus plus?

The company Borland developed Turbo C++.


What is turbo c plus plus?

Turbo C++ is Borland's integrated development environment (IDE).


What is the Difference between arrays in c and c plus plus?

Nothing whatsoever. They are exactly the same.