目前我是刚开始接触的C语言感觉一切都是非常的新奇自己也觉得真的很有趣。现尝试书写了以下代码虽然这些可能都是一些很基础的代码但后面我会持续学习的。#include stdio.h#include stdbool.hint main(){//char类型定义变量char ch a;printf(%c\n, ch);char ch2 65;//65在ASCII码表中表示Aprintf(%c\n, ch2);short sh 10;printf(%d\n, sh);float f 12.5f;//f后缀表示这是一个float常量printf(%f\n, f);_Bool flg 0;if (flg){printf(this is true!);}else{printf(this is not true!);}return 0;}