Write a complete program thatdeclares an integer variable,reads a value from the keyboard into that variable, andwrites to standard output the square of the variable's value.besides the number, nothing else should be written to standard output.

Respuesta :

#include

int main()
{
int num;
scanf("%d", &num);
printf("%d", num*num);
return 0;
}