c언어 첫 코딩 응용
#include int main(void) { char name, name2, name3, height, height2, height3, height4, height5, weight2, weight3; //문자형 char 의 변수 선언 int age; // 정수형 int 의 변수 선언 float weight; // 실수형 float 의 변수 선언 name = 'L'; name2 = 'W'; name3 = 'S'; // char 변수 초기화 age = 28; // int 변수 초기화 weight = 69.5f; weight2 = 'k'; weight3 = 'g'; // float, char 변수 초기화 height = '1'; height2 = '8'; height3 = '2'; height4 = 'c';..
2022. 8. 13.