Whether there can be main inside another main?If so how does
it work?
Answer Posted / jagadish
main()
{
clrscr();
printf("");
getch();
}
| Is This Answer Correct ? | 5 Yes | 31 No |
Post New Answer View All Answers
what do you mean by inline function in C?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Describe the modifier in c?
Explain the priority queues?
What is extern storage class in c?
Describe the order of precedence with regards to operators in C.
What is the difference between functions getch() and getche()?
What is NULL pointer?
How to write c functions that modify head pointer of a linked list?
What is clrscr ()?
Write a code to remove duplicates in a string.
how should functions be apportioned among source files?
how many errors in c explain deply
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is extern variable in c with example?