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
Can we declare variable anywhere in c?
Explain what is a program flowchart and explain how does it help in writing a program?
What is a protocol in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is void pointers in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Find MAXIMUM of three distinct integers using a single C statement
what are the advantages of a macro over a function?
Do you know the use of fflush() function?
what do the 'c' and 'v' in argc and argv stand for?
Why we use conio h in c?
Explain how does free() know explain how much memory to release?
what value is returned to operating system after program execution?
using only #include
Explain how can I convert a number to a string?