Whether there can be main inside another main?If so how does
it work?

Answer Posted / kasthurimangai.v

main()
{
printf("main()");
}

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1497


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1263


What is c method?

540


What is putchar() function?

640


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

710






Why does everyone say not to use scanf? What should I use instead?

685


How do you sort filenames in a directory?

722


Explain what are global variables and explain how do you declare them?

645


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

693


Explain what are multibyte characters?

631


What is function prototype in c with example?

583


What does c mean in standard form?

606


How can I change their mode to binary?

704


What is return type in c?

646


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1631