19 lines
175 B
C
19 lines
175 B
C
#include <stdio.h>
|
|
|
|
void funk(void);
|
|
|
|
int main(void)
|
|
{
|
|
funk();
|
|
funk();
|
|
funk();
|
|
return 0;
|
|
}
|
|
|
|
void funk(void)
|
|
{
|
|
int j = 0;
|
|
j++;
|
|
printf("%d\n", j);
|
|
}
|