summaryrefslogtreecommitdiff
path: root/deneme_5.c
blob: 0b7206202df768bf2285508d4ca6bf6733cbaf71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

void main() 
{
	int a;
DONGU:
	if (a>10) goto son;
	printf("%d",a);
	a++;
	goto DONGU;
son:



}