Answer Posted / aparna
no....we cant define a function with in another
fn......Insteadwe can declare a function..
ex:
void main()
{
int fun(int); // this is declaration
fun(3); // this is fn. calling
}
int fun(int a) //this is fn.definition
{
}
| Is This Answer Correct ? | 22 Yes | 2 No |
Post New Answer View All Answers
What is the use of header?
What are data structures in c and how to use them?
Tell me when would you use a pointer to a function?
Why doesnt the call scanf work?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
In a header file whether functions are declared or defined?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Why we use conio h in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What are directives in c?
Do you know the use of 'auto' keyword?
Can you please explain the scope of static variables?
how many key words availabel in c a) 28 b) 31 c) 32
How can I write a function analogous to scanf?