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
Can you tell me how to check whether a linked list is circular?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is c language in simple words?
Explain what is the difference between null and nul?
What is meant by type specifiers?
Process by which one bit pattern in to another by bit wise operation is?
What was noalias and what ever happened to it?
What is a static function in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Explain c preprocessor?
What is 2c dna?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the significance of c program algorithms?
How to Throw some light on the splay trees?