#include #include int no; char name[30]; int age; float high; float weight; main() { printf("Input No. :"); scanf("%d",&no); printf("\nInput You Name :"); scanf("%s",&name); printf("\nInput Your Age :"); scanf("%d",&age); printf("\nInput Your High :"); scanf("%f",&high); printf("\nInput Your Weight :"); scanf("%f",&weight); printf("----------Program By . %s:",name); printf(" No: %d",no); printf("\n----------Welocome everyone.----------"); printf("----------\n"); printf("Your No. %d\n:",no); printf("Your Name. %s\n:",name); printf("Your Age. %d year old\n:",age); printf("Your High.%.2f CM\n:",high); printf("your Weight. %.2f KG\n:",weight); printf("--------------------"); }