File: fminmax.cpp

package info (click to toggle)
adolc 2.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,684 kB
  • ctags: 3,333
  • sloc: cpp: 18,988; ansic: 15,599; sh: 11,184; makefile: 483
file content (11 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#include <adolc/adolc.h>

int main(int, char **)
{
        double x = 3, y = 4;

        fmax(x, y);
        fmin(x, y);

        return 0;
}