#include #include int no; char name[30]; float avg; main() { printf("----- Program by : kanyanat : No.10 -----\n"); printf("Input No. :"); scanf("%d",&no); printf("\nInput Your Name :"); scanf("%s",&name); printf("\nInput Your avg :"); scanf("%f",&avg); printf("\nYour No. %d ",no); printf("\nYour Name %s Welcome",name); printf("\nAvg %.2f ",avg); printf("\n-------------------- %s",name); }