what is difference between procedural language and functional language ?
Answer Posted / 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 |
Post New Answer View All Answers
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
write a program to display all prime numbers
Are there namespaces in c?
Can we increase size of array in c?
What is the difference between call by value and call by reference in c?
Explain the advantages and disadvantages of macros.
What is the difference between #include
How are structure passing and returning implemented?
What is sizeof array?
Explain can static variables be declared in a header file?
Write a program to print “hello world” without using semicolon?
When can you use a pointer with a function?
Explain what is the difference between a free-standing and a hosted environment?
How can I pad a string to a known length?
Why main function is special give two reasons?