Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples06
  • 02-externc
  • module.c
  • Added Koenig lookup example
    121e73b8
    Grzegorz Jabłoński authored
    2019-11-18 09:56:19 +0100  
    Browse Code »
module.c 154 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <stdio.h>

int fun1()
{
  return 15;
}

void fun2(int a)
{
  printf("%d\n",a);
}

  
int fun3(double b)
{
  printf("%f\n",b);
  return (int)b;
}