answersLogoWhite

0

Procedural oriented programming

Procedural Programming is a methodology for modelling the real world or the problem being solved, by determining the steps and the order of those steps that must be followed in order to reach a desired outcome or specific program state.

What has it to do with the language C

While most C code will be written with the procedural oriented programming methodology in mind, it's not mandatory. It's not that difficult to use the object oriented methodology within C. However, the language lends itself more to using the other methodology. Object oriented programming within C requires one more argument per function (and it's really more difficult when using inheritance).

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Why c plus plus language is called command oriented language?

C++ is not a command oriented language, it is a multi-paradigm language because it employs functional and object-oriented approaches to programming.


Is c an object oriented programing language?

C language is not a program, and it isn't an object-oriented language either.


Is c is complete object oriented programming language?

No. C is not object oriented. C++ is object oriented.


What is the difference between cc plus plus and java?

C is a procedure oriented language ,Where C++ & java are object oriented language.But java is platform independent.So generally C is called POP.C++ is called OOP.But java is OOP , which is platform independent.If java does not support primitive data type then it is called as pure object oriented language.


What is the difference between c and c plus plus extension?

c language is the structure oriented language and c does not follows the object oriented paradigms . c++ obeys the all object oriented language characteristics ========== C++ is a set of extensions to the C language to allow some (not all) principles of object-oriented programming to be used. Originally, C++ was a front end pre-processor for C and C++ compilers will translate C language functions.


Whether c language is object oriented or not?

C is not, C++ is.


Who invented cpp?

Bjarne Stroustrup is the recognized inventor of the C++ object oriented programming language. C++ was an enhancement to the C language, which was not object oriented.


Why c is object oriented programming languages?

C isn't an object oriented language... C++ is, because it has classes.


Is C programming procedural or object oriented?

C is a weakly typed procedural programming language. For object oriented programming languages near C, you can look at ooc ( http://ooc-lang.org/ ), C++, D, and Java.


Is c complete object oriented programming language?

No, but C++ is.


What is the Disadvantage of c?

It is not object oriented language.


Why c is called partially an OOP language?

C is not an OOP language, period. However, while C++ supports OOP it does not rely on it. With C++, you can mix procedural, structured and object-oriented principals by mixing C++ code with C-style code and even raw assembly routines, neither of which are object-oriented.