#include <stdio.h>
int main() {
float p,s;
printf("Enter purchase & selling amount:");
scanf("%f %f",&p,&s);
if(p<s)
{
printf("Profit of %.2f Rs",s-p);
}
else
{
printf("Loss of %.2f Rs",p-s);
}
}
Video Link The video contains snaps from 2019 throwback ones when i was doing my masters studies from university of surrey, guildford, londo...
No comments:
Post a Comment