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 |
What is the -> in c?
What is function prototype?
Is it possible to initialize a variable at the time it was declared?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
When is a “switch” statement preferable over an “if” statement?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
Define VARIABLE?
What are keywords c?
what is inline function?
Dear Sir, we are required the bubble sorting programs Regs Prem
What is undefined behavior?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?