Contents

Views 6927 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
자료형 크기 확인하기.. 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&gt;=0; i--){
                (temp.lng&gt;&gt;i)&amp;1 ? putchar('1') : putchar('0');
                if(cnt==0 || cnt==8) putchar(' ');
                else if(cnt&gt;8 &amp;&amp; !(i%8)) putchar(' ');
                cnt++;
        }
}
-------------------------------------------------------------------



메모리 위치 확인 (ppt. 12)
-------------------------------------------------------------------
#include<stdio .h="">

void main()
{
        int in=0x4142;
        char ch1, ch2;

        ch1 = in;
        ch2 = in &gt;&gt; 8;

        printf("addr of in  : %un", &amp;in);
        printf("addr of ch1 : %un", &amp;ch1);
        printf("addr of ch2 : %un", &amp;ch2);

//     printf("nch1=%c, ch2=%cn", ch1, ch2);
}
------------------------------------------------------------------- 
</stdio></stdio></stdio>

?

List of Articles
No. Category Subject Author Date Views
381 System/OS [linux] Proftpd 설치 가이드 hooni 2003.04.23 13021
380 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 12851
379 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4616
378 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12685
377 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12412
376 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14570
375 System/OS [linux] split 명령어 hooni 2014.03.11 4305
374 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10493
373 System/OS [linux] ssh에서 원격 파일 전송하기.. hooni 2013.04.23 14157
372 Develop [linux] tar 명령어 뽀개기.. ㅋㅋ hooni 2003.04.23 7669
371 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 799
370 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11359
Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 ... 98 Next
/ 98