Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / suresh kumar
main() is a system declared bt user defined function
coz main is declared as built in functions but we give the
definition of main according to us. means it is defined by
the user.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Why malloc is faster than calloc?
What do you understand by friend-functions? How are they used?
Why we not create function inside function.
What is an operator?
how to write a c program to print list of fruits in alpabetical order?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is getche() function?
What are control structures? What are the different types?
Is fortran faster than c?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Is c is a low level language?
Why is c so powerful?
What do you mean by recursion in c?
What is atoi and atof in c?