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
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Explain what is gets() function?
Explain which function in c can be used to append a string to another string?
What are valid operations on pointers?
Why should I prototype a function?
What is wild pointer in c?
What is variable in c example?
What is the difference between malloc() and calloc() function in c language?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What is gets() function?
What is the -> in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is indirection? How many levels of pointers can you have?
Why dont c comments nest?
What is c language & why it is used?