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