answersLogoWhite

0

Yes

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is structured programming language in C plus plus?

Your question makes no sense.


When c was already there why did c plus plus was developed?

c is a structured language. It has many limitations since it gives more importance to procedure rather than data..so there needed a language that keeps data secure..


What is a feature in c that is not in c plus?

C is a structured programming language which is feature of C which made it a powerful language when it was new in market. But after C++ was developed structured programming was considered as disadvantage due to development of Object Oriented Programming Language.


A programming language that encourages structured programming?

C++ (or any other C language) encourages structured programming. I'm not sure if you are asking for an 'object oriented language' rather than structured. If that's the case, any C language or Java would fit the description perfectly.


Why is c called a structured language?

a synonym for structure language in "Comb-sturctured" languages. C in comb.


What type of language c?

It is a structured, procedural, high level programming language.


What are the interpreter in c plus plus?

C++ is a compiled language, not an interpreted language.


In computer language C plus plus is related to?

C++ is related to C, the language from which it is derived.


How does the C language work as structured?

It is known as structured programming language because it has functions and you can go for a modular approach in solving the problems. However, object oriented concepts are not supported in C.


Is c plus plus a complied or interpreted language?

C++ is generally a compiled language.


Is C plus plus a high level language?

Yes, C++ is a high-level language.


Does 'for loop' works in C plus plus?

In C++, a for loop is structured as follows: for( int index = 0; index < 10; ++i ) { //do something }