what is difference between procedural language and functional language ?
Answers were Sorted based on User's Feedback
Answer / sanjiv
In procedural language object is not used
In functional language object is used
| Is This Answer Correct ? | 18 Yes | 3 No |
Answer / fauziya yaseen ansari
Object is not used in procedural language, Object is used in
functional language.
| Is This Answer Correct ? | 6 Yes | 4 No |
Answer / 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 |
Answer / shamim akhtar
In procedural languages we have to define complete procedure step by step.
In functional language ,there is no define complete procedure as it provide reusability
| Is This Answer Correct ? | 2 Yes | 2 No |
in which language c language is written?
What are the advantages of c preprocessor?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
Write a code to generate divisors of an integer?
What is difference between && and & in c?
What is a void pointer in c?
define string ?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
What does the characters “r” and “w” mean when writing programs that will make use of files?
How can I direct output to the printer?