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


Please Help Members By Posting Answers For Below Questions

Which header file is essential for using strcmp function?

1233


Is printf a keyword?

1002


What are all different types of pointers in c?

795


write a c program to calculate sum of digits till it reduces to a single digit using recursion

3025


Explain what does the format %10.2 mean when included in a printf statement?

1138


Explain the priority queues?

871


Differentiate between the expression “++a” and “a++”?

1014


Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

815


Is it possible to execute code even after the program exits the main() function?

1105


What is meant by type casting?

849


What is the advantage of a random access file?

895


Where in memory are my variables stored?

870


Who developed c language?

881


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1714


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1018