#include <math.h>
#include <stdio.h>
void calculrate(int nth,int powerof, int value)
{
 value = pow((double)nth,(double)powerof);
}

void main()
{
int nth = 0;
int powerof = 0;
int value = 0;

printf(\"얼마의 제곱을 구하십니까?\");
scanf(\"%d\",&nth);

printf(\"몇승으로 올리시겟습니까?\");
scanf(\"%d\",&powerof);

value = pow((double)nth,(double)powerof);
printf(\"\\n%d\", &value);
scanf(\"%f\",&powerof);

}

이게 뭐가 문제인지 쓰레기값밖에 안나와요....
비주얼c++ 2010 사용중입니다 굽신.