if the total selling price of 15 items and the total profit
earned on them is input through the keyboard, write a program
to find the cost price of one of the item
Answers were Sorted based on User's Feedback
Answer / jiaul haque sabuj
main()
{
float X,Y,Z,A;
printf("Please Enter the Total Price Of 15 Items : ");
scanf("%f",&X);
printf("Please Enter the total profit Earned on them : ");
scanf("%f",&Y);
Z=(X-Y)/15;
printf("The Cost Price of One Item is : %.2f",Z);
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / gagan kumar
void main()
{
int sell_pr, profit, cost_pr, cost_pr_one_item ;
clrscr();
printf(“Please enter the selling price of 15 items:”);
scanf(“%d”, &sell_pr);
printf(“Please enter the profit earned on 15 items:”);
scanf(“%d”, &profit);
cost_pr = sell_pr – profit;
cost_pr_one_item = cost_pr/15;
printf(“Cost price of one item is %d”, cost_pr_one_item);
getch();
}
| Is This Answer Correct ? | 6 Yes | 5 No |
Define the scope of static variables.
how can we use static and extern?and where can we use this?
What is c token?
difference between string and array?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
write a program to print the all 4digits numbers & whose squares must me even numbers?
How can you dynamically allocate memory in C?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
what type of questions arrive in interview over c programming?
What ios diff. Between %e & %f?
compare array with pointer?
In which header file is the null macro defined?