11 lines
130 B
C
11 lines
130 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
void foo() {
|
||
|
|
printf("testing\n");
|
||
|
|
}
|
||
|
|
|
||
|
|
int main (int argc, char const *argv[]) {
|
||
|
|
foo();
|
||
|
|
return 0;
|
||
|
|
}
|