Is main() is used in the program,,see below example?
void main()
{
int i;
for(i=0;i<10;i++)
main();
}
Then what is the output of the program?
Answer Posted / parvathi
it cgoes into infinite loop
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is a nested formula?
What are the 5 types of inheritance in c ++?
Does c have circular shift operators?
Write a simple code fragment that will check if a number is positive or negative.
What is c language & why it is used?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What is clrscr in c?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
Write a program to print "hello world" without using a semicolon?
How do you construct an increment statement or decrement statement in C?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Explain how do you declare an array that will hold more than 64kb of data?
Write a Program to find whether the given number or string is palindrome.
write an algorithm to display a square matrix.