C program to prompt user with option on menu at Post Office
#include<stdio.h> #include<conio.h> struct speed; { int rate; float weight; float distance; }; void main() { struct speed sp; printf(“\n enter distance”); scanf(“%f”,&sp.distance); printf(“\n enter weight”); scanf(“%f”,&sp.weight); if(sp.distance <=40 && sp.weight<=100) … Read More