Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exe.c « dlltest « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d778348e4471c0ca27a4c7e7d71cc517aacf2590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>

#include "dll.h"

int main()
{
	int i, j, k;
	double	dk;

	i = 10;
	j = 13;

	k = Add(i, j);

	printf ("%d + %d = %d\n", i, j, k);
    
	dk = Sub(i, j);

	printf ("%d - %d = %f\n", i, j, dk);

	return 0;
}