Develop
2003.04.23 11:02
[c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자
조회 수 8368 댓글 0
자료형 크기 확인하기.. sizeof (ppt. 16)
-------------------------------------------------------------------
#include<stdio .h="">
void main()
{
printf("n char : %d byte", sizeof(char));
printf("n long : %d byte", sizeof(long));
printf("n int : %d byte", sizeof(int));
printf("n short : %d byte", sizeof(short));
printf("n unsigned : %d byte", sizeof(unsigned));
printf("n float : %d byte", sizeof(float));
printf("n double : %d byte", sizeof(double));
}
-------------------------------------------------------------------
실수형의 표현 (ppt. 9)
-------------------------------------------------------------------
#include<stdio .h="">
#define MAXBIT 31
void main()
{
int i, cnt=0;
union _float{
float flt;
long lng;
} temp;
temp.flt = -0.5;
for(i=MAXBIT; i>=0; i--){
(temp.lng>>i)&1 ? putchar('1') : putchar('0');
if(cnt==0 || cnt==8) putchar(' ');
else if(cnt>8 && !(i%8)) putchar(' ');
cnt++;
}
}
-------------------------------------------------------------------
메모리 위치 확인 (ppt. 12)
-------------------------------------------------------------------
#include<stdio .h="">
void main()
{
int in=0x4142;
char ch1, ch2;
ch1 = in;
ch2 = in >> 8;
printf("addr of in : %un", &in);
printf("addr of ch1 : %un", &ch1);
printf("addr of ch2 : %un", &ch2);
// printf("nch1=%c, ch2=%cn", ch1, ch2);
}
-------------------------------------------------------------------
</stdio></stdio></stdio>
-
[js] 자바스크립트 메뉴얼 사이트.. ㅋㅋ
-
[c] 구조체/파일 입출력 프로그램
-
[ios] 동영상 플레이어 샘플 (for Remote Url)
-
[c] 라인수 입력받아 마름모꼴 출력하기..
-
[ios] Requesting Location Permissions in iOS
-
[C++] 18일차 과제물, String 클래스 디자인 【 C++ 문제 】
-
[c] 테트리스3D (Tetris 3D)
-
[c++] mfc로 만든 부엌 수납 시스템(2D기반 설계)
-
[c] 단기과정[01/14] 피보나치, 파스칼.. 파일입출력
-
[pdf] C 국제 표준 문서
-
[c] 패스워드 암호화/사용자 정보 보기
-
[c++] 인라인 함수에 대한 설명