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
Which header file is essential for using strcmp function?
Is printf a keyword?
What are all different types of pointers in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Explain what does the format %10.2 mean when included in a printf statement?
Explain the priority queues?
Differentiate between the expression “++a” and “a++”?
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?
Is it possible to execute code even after the program exits the main() function?
What is meant by type casting?
What is the advantage of a random access file?
Where in memory are my variables stored?
Who developed c language?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
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