Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / lakkup
it is an inbuilt function i.e, main() it indicates the
starting of the program and it is a user defined function
when the user defines it as void main() or int main(void).
| Is This Answer Correct ? | 6 Yes | 13 No |
Post New Answer View All Answers
Does c have class?
Explain pointers in c programming?
What are the different types of C instructions?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What is the use of gets and puts?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Are pointers integer?
Explain bitwise shift operators?
Explain the use of 'auto' keyword in c programming?
What is a structural principle?
Is main an identifier in c?
What is the difference between far and near in c?