/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
short sh = 12;
int nt = 155;
long long on = 1666;
printf("자료형의 크기를 알아보는 코드 \n");
printf("1.short : %d byte, %d byte \n", sizeof(sh), sizeof sh);
printf("2.int : %d byte, %d byte \n", sizeof(nt), sizeof nt);
printf("3.long long : %d byte, %d byte \n", sizeof(on), sizeof on);
return 0;
}