Elements 6.1.2
A C++ base framework for the Euclid Software.
Loading...
Searching...
No Matches
cutout.c
Go to the documentation of this file.
1
26#include <stdio.h>
27
29
30
31int main(int argc, char *argv[]) {
32
33 printf("This is a constant: %d\n", MY_CONST);
34 printf("This is the function result: %d\n", myFunc());
35
36 return 0;
37}
38
int main(int argc, char *argv[])
Definition: cutout.c:31
int myFunc(void)
Definition: util.c:29
int MY_CONST
Definition: util.c:27