用于固件ftf中system.sin的解包
使用方法:将固件ftf文件用rar打开,解压出system.sin文件,将该文件于SIN2IMG.exe放在同一个文件夹里面,比如说h:\下,进入CMD,用cd命令进入h:\目录,输入SIN2IMG.exe system.sin system.img稍等一会,system.img就解包出来了。
double sin(double a)
函数在math.h头文件中。
C语言程序:
#include <stdio.h>#include <math.h>
void main()
{
printf("%lf\n", sin(3.14159/4))
}
运行测试:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)