#include "math.h"
void calculCosEtSin (double inNum,double *resCos, double *resSin)
{
*resCos=cos(inNum);
*resSin=sin(inNum);
}