what is a static function

Answer Posted / radhika

function which is static in class,which cannot be overridden

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

int i=10; printf("%d %d %d", i, i=20, i);

1012


What does c mean in basketball?

561


Is using exit() the same as using return?

676


Can a program have two main functions?

570


What is selection sort in c?

609






please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1327


What is the difference between ‘g’ and “g” in C?

2531


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

570


What are the characteristics of arrays in c?

612


Why is not a pointer null after calling free?

591


Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.

1592


What is a structure member in c?

547


Can include files be nested? How many levels deep can include files be nested?

658


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.

1063


to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?

1573