//while true false 사용
#include<stdio.h>
typedef enum { f, t } boolean;
void main()
{
int n=0;
boolean true = t;
boolean false = f;
while(true)
{
printf("학생의 번호 : %d\n",n);
if(n==10)
break;
n++;
}
}
//////////////////////
// bloolean 구현
#include<stdio.h>
typedef enum { false, true } boolean;
void main()
{
int n=0;
boolean limits = true;
while(limits)
{
printf("학생의 번호 : %d\n",n);
if(n==10)
break;
n++;
}
}
'프로그래밍 > C' 카테고리의 다른 글
sort (0) | 2017.09.18 |
---|---|
수식계산기 v0.8 (0) | 2017.09.18 |
수식계산기 v0.5 (0) | 2017.09.18 |