Скачиваний:
7
Добавлен:
16.04.2013
Размер:
240 б
Скачать
#include <stdio.h>
#include <math.h>

extern "C"
{ 
	float mcos(float) ;
}


int main() 
{
	float x=0;	
	printf("x: ");
	scanf("%f",&x);
	
	printf("C cos = %f\n", cos(x));
	printf("My cos = %f\n", mcos(x));
	
	return 0;
}
Соседние файлы в папке Задача № 52 вроде