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 / harshitha
the loop will be repeated for 10 times
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
Why does notstrcat(string, "!");Work?
What is a node in c?
What is function what are the types of function?
What is the difference between array_name and &array_name?
How can I convert a number to a string?
Why do we need functions in c?
In a switch statement, what will happen if a break statement is omitted?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is structure of c program?
What is ambagious result in C? explain with an example.
Why is a semicolon (;) put at the end of every program statement?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
How many levels of indirection in pointers can you have in a single declaration?
How to declare pointer variables?
Differentiate abs() function from fabs() function.