الصح :
كود PHP:
#include <stdio.h>
#include <conio.h>
#include <math.h>
int main(void)
{
double U,V,W,Y;
U=7;
V=6;
W=4;
Y=sqrt(U+V)*pow(W,2);
printf("Y=%d,Y");
getch();
return(0);
}
لأن الـ Function التي اسمها sqrt تقبل بارامتر من نوع double وليس int .
بالتوفيق .