Answer Posted / ricky dobriyal
/* hello i am ricky dobriyal student of bca from simt
kashipur*/
c source file converted into exe file automatically when
you run the program
thank you..
| Is This Answer Correct ? | 8 Yes | 24 No |
Post New Answer View All Answers
What is a global variable in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain what are its uses in c programming?
What are c header files?
Explain why can’t constant values be used to define an array’s initial size?
Do variables need to be initialized?
Why c is faster than c++?
What is identifier in c?
When should the register modifier be used? Does it really help?
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 are linker error?
Why & is used in scanf in c?
how should functions be apportioned among source files?
What is the purpose of the statement: strcat (S2, S1)?
Why c is a mother language?