what is difference between procedural language and functional language ?
Answer Posted / fauziya yaseen ansari
Object is not used in procedural language, Object is used in
functional language.
Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Why enum is used in c?
What is the difference between procedural and declarative language?
What is string length in c?
What is conio h in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
How do you print only part of a string?
What is calloc() function?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Write a program to print "hello world" without using a semicolon?
Write a program of prime number using recursion.
Explain Basic concepts of C language?
What is header file definition?
What is use of bit field?
Why doesnt the call scanf work?