what is difference between procedural language and functional language ?
Answer Posted / sanjiv
In procedural language object is not used
In functional language object is used
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
write a program to print largest number of each row of a 2D array
What is spaghetti programming?
Are pointers integers in c?
What is a program flowchart and how does it help in writing a program?
What is the difference between local variable and global variable in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How can you determine the size of an allocated portion of memory?
Is it fine to write void main () or main () in c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Is c pass by value or reference?
What is the use of function overloading in C?
write a program to rearrange the array such way that all even elements should come first and next come odd
Write a program to print “hello world” without using semicolon?
What is null pointer in c?