pragma mark while的注意点
pragma mark 概念
/**
* while :当...时候
* 循环流程
*/
pragma mark 代码
#include <stdio.h>
int main()
{
// 任何数都有真假性
// while (998)
// {
// printf("lyh");
// }
/*
int age = 10;
if (age = 5)
{
printf("success\n");
}
*/
/*
int age = 10;
// 一般常量放在前面
while (age = 5) {
printf("success\n");
}
*/
/*
if (1)
printf("lyh\n");
*/
/*
// 和if一样,while也可以省略大括号,省略大括号之后,while只会执行离他最近的一条语句
while (1)
printf("lyh");
printf("-----------\n");
*/
/*
if(1)
int a = 10;
printf("a = %i \n",a);
*/
/*
while (1)
int a = 10;
printf("a = %i\n",a);
*/
/*
// 其实用{}包括起来的代码,称之为代码块
// ; 是一条空语句
if (0);
{
printf("lyh\n");
}
*/
/* 无限循环 所以不会执行下面的
while (1);
printf("lyh");
*/
// 最简单的死循环 操作系统一般都是死循环 开机就不会关机
while (1);
return 0;
}