small-projects/python-c-interpriter/main.c

15 lines
172 B
C
Raw Normal View History

2025-04-11 20:59:55 +00:00
#include "other.h"
void main() {
int a = 5;
printf("%d", a);
foo();
int i = 10;
while (i != 0)
{
printf("%d", i);
i -= 1;
}
}