what is difference between procedural language and functional language ?
Answer Posted / ashu chhabra
A procedural program is written as a list of instructions,
telling the computer, step-by-step.Program units include the
main
Functional programming is particularly useful for
mathematical work, where the notion of ``function'' is
already a well established concept.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Explain the use of bit fieild.
How can I write functions that take a variable number of arguments?
How many types of functions are there in c?
What is the use of static variable in c?
When is a “switch” statement preferable over an “if” statement?
What are nested functions in c?
How is = symbol different from == symbol in c programming?
What is a stream?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
which is an algorithm for sorting in a growing Lexicographic order
How can you avoid including a header more than once?
Why do we use & in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is the purpose of 'register' keyword?
What is the difference between a string and an array?