xxxxxxxxxx
printf("enter the three integers: ");
//%d is integer format
scanf("%d%d%d",&n1,&n2,&n3);
//%c is char format and %s is a sting format
printf("enter the three character values: ");
scanf("%c%c%c",a,b,c);
//%f is float format
printf("enter the three floats: ");
scanf("%f%f%f",&x,&y,&z);
}