mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-19 11:32:13 +00:00
12 lines
121 B
C
12 lines
121 B
C
#include <complex.h>
|
|
|
|
extern int foo (complex int);
|
|
|
|
int main (void)
|
|
{
|
|
complex int a = 33.4;
|
|
foo (a);
|
|
|
|
return 1;
|
|
}
|