summaryrefslogtreecommitdiffstats
path: root/test/native/cross-android-armv7-tst1/hello-fp.c
blob: d94f6603138d0b340764353125b7600630722096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <math.h>

int main(int argc, char ** argv) {
    double d1 = 3.14;
    double d2 = 2.0;
    double dr;

    dr = d1 * d2;
    printf("hello %lf * %lf = %lf\n", d1, d2, dr);

    dr = sin(d1);
    printf("hello sin(%lf) = %lf\n", d1, dr);

    return 0;
}