Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples07
  • 02-externc
  • module.c
  • Moved qt tutorial earlier
    13660600
    Grzegorz Jabłoński authored
    2022-09-19 14:43:21 +0200  
    Browse Dir »
module.c 161 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#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;
}