Displaying 1 result from an estimated 1 matches for "introduza".
Did you mean:
introduzca
2007 Jul 02
0
Interface R and C - windows
...Dev-C++ and librarys of packages R. For example, I want use the function dnorm and I include in compiler options the library Rmath.h and dnorm.c:
#include <stdio.h>
#include <Rmath.h>
#include <dnorm.c>
main()
{
int a, b, s;
printf("Introduza um n?mero:\n");
scanf("%d", &a);
printf("Introduza outro n?mero:\n");
scanf("%d", &b);
s = a + b;
s=dnorm(2,1,1,1);
printf("A densidade de %d com %d d? %d\n", a, b, s);...