mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-07 16:06:09 +00:00
11 lines
105 B
C
11 lines
105 B
C
// main.c
|
|
#include <stdio.h>
|
|
#include <foo.h>
|
|
#include <goo.h>
|
|
|
|
int main()
|
|
{
|
|
foo();
|
|
goo();
|
|
return 0;
|
|
} |