"Fossies" - the Fresh Open Source Software Archive

Member "FunctionCheck-3.2.0/test/simple_test_lib2.c" (26 May 2012, 251 Bytes) of package /linux/privat/old/FunctionCheck-3.2.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #include <stdio.h>
    2 #include <stdlib.h>
    3 #include <math.h>
    4 
    5 void _f4()
    6 {
    7     int i;
    8     double j = 0., w;
    9 
   10     for (i = 0; i < 1000000; i++)
   11     {
   12         j += sin(cos(sin(cos((double) i))));
   13         w = pow(j, cos(j));
   14         j = cos(cos(j));
   15     }
   16 }