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
The file stdio.h, what does it contain?
Why should I use standard library functions instead of writing my own?
What is uint8 in c?
What are the primitive data types in c?
number of times a digit is present in a number
What is the benefit of using an enum rather than a #define constant?
Explain how are 16- and 32-bit numbers stored?
Is it better to bitshift a value than to multiply by 2?
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.
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
How can type-insensitive macros be created?
Is array a primitive data type in c?
When can a far pointer be used?
What is nested structure?
Explain about the constants which help in debugging?