Whether there can be main inside another main?If so how does
it work?
Answer Posted / gprabha
#include<stdio.h>
void main()
{
printf("main()");
main();
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
FILE PROGRAMMING
Explain what are the different file extensions involved when programming in c?
What is the modulus operator?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is volatile, register definition in C
Which are low level languages?
Why is it important to memset a variable, immediately after allocating memory to it ?
List the variables are used for writing doubly linked list program.
How to Throw some light on the splay trees?
What is the use of a semicolon (;) at the end of every program statement?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What is meant by errors and debugging?
Write a code to generate divisors of an integer?
What is the difference between int main and void main?
What is getch () for?