pierrot's divisor program using c or c++ code


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what are threads ? why they are called light weight processes ? what is the relation between process and threads ?

1 Answers  


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

0 Answers  


void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?

8 Answers   Wipro,


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.

0 Answers   Microsoft,


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  






What are the string functions? List some string functions available in c.

0 Answers  


How can I call a function, given its name as a string?

4 Answers   ABC Telecom,


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


Explain how can I avoid the abort, retry, fail messages?

0 Answers  


Do you know what is a programing language ?

0 Answers  


Explain About fork()?

0 Answers   TISL,


What is the usage of the pointer in c?

0 Answers  


Categories