in case any function return float value we must declare
a) the function must be declared as 'float' in main() as well
b) the function automatically returned float values
c) function before declared 'float' keyword
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
what is meant by the "equivalence of pointers and arrays" in C?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
how to determine the complexity of an algorithm as log(n)
How do you determine the length of a string value that was stored in a variable?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What does malloc () calloc () realloc () free () do?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
WHAT IS ABSTRACT DATA TYPE
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
difference between the array and linked list general difference related to memory
what is the output of below int n=10; (n++)++; printf("%d",n);
Program to trim a given character from a string.