answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why c is top down programming language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What the difference between c and c plus plus?

The fundamental difference is that in C++ object-oriented programming (OOP) was added. C is a procedural language (that means. top-down structure design), where as C++, which is an extension of C itself, is an object oriented language.


When was C - programming language - created?

C - programming language - was created in 1972.


Programming language used for hacking?

Top 10 programming language used for hacking: Python C++ C Programming SQL Javascript PHP JAVA Ruby Perl Bash


What programming language is Android written in?

Android is programmed in the C and C++ programming language.


What Example of structured programming?

C is a structured programming language. PHP, COBOL is also a structured programming language. These languages follow a top down approach.


What do you mean by c language?

C is a programming language.


Name of object oriented programming language?

C++ is the name of a programming language.


Example of procedural programming language and object oriented programming language?

example of procedural programming are those programming language that have structure e.g basic,fortran,c++,c and pascal e.t.c


Websites to download c C programming language books?

Download 1000s of C C C++ Programming Language. http://www.guruengineers.com


Who are the ancestors of C programming language?

programming languages B and BCPL which was used to derive C


Why is programming language named C and not simply C?

I am guessing you typed the question wrong, the way I understand your question is "Why is the programming language named C++ and not C ? " The answer to this is that there is a programming language called C, and in that programming language the ++ means increment by one. So C++ is the language C improved, as such it can read and compile all C programs in addition to having other features that C does not have.


Top down source code in c plus plus?

C++ is a bottom-up language, not a top-down language. Objects act as the building blocks for all C++ programs, thus lower base classes must be defined before more complex data types can be built from them. C is a top-down language where everything is written procedurally, step-by-step. Thus to use top-down source code in C++, the code must be written using C-style conventions. Most C++ programs use a combination of object-oriented and procedural programming. It is rare to write an entire C++ program using C alone.