EXPERIENCED DESIGNER
I'm Sunny. I am a UI/UX Designer | Web DesignerUI/UX & Project ManagerNuark Digital Agency, MI. US, May.2024 ~ Dec. 2024Hanmoe Soft, Seoul, South KoreaUI/UX/BX Design & Development Agency, Nov.2021 ~ Sep.2023InstructorThejoeun Academy, Seoul, South KoreaTeach (2D graphics, HTML, CSS, JS, Data Research and User Test, Storyboard & Components, Design Concept, Build Contents and Features, Modify pro..
더보기
자료형과 변수
#include void main1() { printf("자료형과 변수를 이용한 printf()함수 연습 프로그램 \n"); //정수형 short short_value = 100; int int_value = 1234; long long_value = 300L; unsigned int unit_value = 400; printf("short = %d, int=%d, long = %ld, unsigned int %u\n", short_value, int_value, long_value, unit_value); printf("8진수=%o, 16진수=%x\n", short_value, short_value); printf("%d\n", int_value); printf("%6d\n", int_value); p..
더보기