Answer:
C code for the program is given below:
#include <stdio.h>
int main(void) {
int one, multiply;
printf("Enter a number:");
scanf("%d",&one);
printf("The value of number1 is %d\n",one);
multiply = one * one;
printf("%d multiplied by %d is %d",one,one,multiply);
return 0;
}
Explanation: