Write a C program to input cost price (CP) and selling price (SP) and determines whether there is gain or loss.
Rahul Notes
4:48 PM
#include<stdio.h> #include<conio.h> void main() { float cp,sp; clrscr(); printf("\nEnter Cost P...