[string format] 자주 안쓰면 잊어진다

2019. 5. 31. 17:13IT-개발/C및C++

반응형

#include 
#include 
 
int main( void )
{
    char *test = "What's the result?";
     
    printf( "|%8.4s|\n11", test );
    return 0;
}

 

결과

 

|    What|

11

 

 

ㅠㅠ... Test결과

'IT-개발 > C및C++' 카테고리의 다른 글

숫자 범위 및 표현(printf, scanf, 등등) ...  (0) 2019.06.25
[COM] COM Type dll(ocx) 모듈 만으로 사용하기(펌)  (0) 2019.05.16
for 문 ~  (0) 2019.03.12
동작 시간 계산 방법 (1)  (0) 2018.12.28
Data Type 크기 및 범위  (0) 2018.05.11