What is the use of getchar functions?
what is the difference between procedure oriented and object oriented progaming language
what is difference between C and C++
what are non standard function in c
write a program to add two numbers of any size.....(remember any size)
Write a C program to find the smallest of three integers, without using any of the comparision operators.
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
what is output of the following statetment?Printf(“%x”, -1<<4); ?
Explain how can I make sure that my program is the only one accessing a file?
What does stand for?
What does the c preprocessor do?
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.
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer