int main()
{
 double deg;
 double x,y,z;
 scanf(\"%lf %lf %lf %lf\", &deg, &x, &y, &z);
 double A[][3]={{cos(deg*PI/180),-sin(deg*PI/180),0},{sin(deg*PI/180),cos(deg*PI/180),0},{0,0,1}};
 
 return 0;
}

저 윗부분에 함수를 정의하긴햇는데
그것때문에 오류가나는것일까요??
error C2143: syntax error : missing \';\' before \'type\'
이런 오류가 하나 떠요
세미콜론 하나 빠진것도 없는데 왜 오류가나는거죠??

저 오류가 난다고 하는것은 doubleA[][3]이쪽줄이에요

제발 ㅠㅠㅠ
아 잠자고싶어요