int main(void){
int integerType;
float floatType;
double doubleType;
char characterType;
// Sizeof 연산자는 변수의 크기를 계산하는 데 사용된다
printf("Size of int: %ld bytes\n", sizeof(integerType));
printf("Size of float: %ld bytes\n", sizeof(floatType));
printf("Size of double: %ld bytes\n", sizeof(doubleType));
printf("Size of char: %ld bytes\n", sizeof(characterType));
return 0;
}
댓글 없음:
댓글 쓰기