#include stdio.h
void main()
{
float x;
int y;
printf("enter two numbers \n", x);
scanf("%f %f", &x, &y);
printf("%f, %d", x, y);
}
"(Initial values: x= 7, y = 8)"

Posted on by