Question #5056

write a c program to reads 2 integers x&y ther prints if x is a multiple of y

Expert's answer

#include <stdio.h>
int main(void)
{
int a,b;

printf("Enter a and b:");
scanf(a);
scanf(b);

printf("a*b=",a*b);
return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS