C언어: type
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello type\n");
int su = 10; //2~4byte수
printf("su: %d\n", su);
//0,1 : bit
//0000 0000 : 8bit >> 1byte : -128~127 = 256
short s = 200; //2byte
printf("short s: %d\n", s);
char c = 'a'; //1byte
printf("char c: %c\n", c);
long lng = 2100000000; //4byte
long long lng2 = 2100000000; //8byte
printf("long lng: %ld\n", lng);
float f = 3.141592f;
printf("float f: %f\n", f);
double d = 3.141592;
printf("double d: %lf\n", d);
const int num = 0; //값을 바꿀 수 없는 상수
printf("num:%d\n",num);
//num = 99;
printf("num:%d\n",num);
return 0;
}
출력물
Author And Source
이 문제에 관하여(C언어: type), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@gustn2870/C언어-type저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)