Ошибка при выполнении программы: “Process returned -1073741676 (0xC0000094)”
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <locale.h>
const int a=1, b=1;
int main ()
{
setlocale (LC_ALL, "Ukr");
float x,t1,t2;
printf ("Введiть значення x = ");
scanf ("%f", &x);
{
t1 = ((b/(a-b)*(b+x))-((a/pow(a-b,2))*log((a+x)/(b+x))));
printf ("t1 = %f \n", t1);
t2 = (1/a*(log(tan((a*x)/2)))-1/sin(a*x));
printf ("t2 = %f \n", t2);
}
return 0;
}