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
Is null valid for pointers to functions?
What is the purpose of main( ) in c language?
What are near, far and huge pointers?
What is an array? What the different types of arrays in c?
Why isnt any of this standardized in c?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is a void * in c?
What is the right type to use for boolean values in c?
What is the significance of scope resolution operator?
What is selection sort in c?
What are run-time errors?
how to write a c program to print list of fruits in alpabetical order?
Explain how do you list files in a directory?
What are loops c?
How do I round numbers?