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
What are the uses of a pointer?
What is difference between scanf and gets?
How can I access an I o board directly?
main() { printf("hello"); fork(); }
What is define c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
write a program for the normal snake games find in most of the mobiles.
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
write a program to create a sparse matrix using dynamic memory allocation.
What are the benefits of organizational structure?
What is the difference between abs() and fabs() functions?
What is #error and use of it?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.