int형 을 char 문자형으로 변환할수 있는 방법은 없는지???

irum66의 이미지

#include<stdio.h>

int main()
{
        int k=1;
        char y;
        y =(char)k;
        printf("----%c-----",y);
}

int k 를 char 형으로 형변환이 되지 않습니다... 혹시 int 형을 char형으로
변환할수 있는 방법이 있는지 궁금합니다.. [/code]

bucketquai의 이미지

잘되는데요?
혹시 1이라서 출력이 안되는거 아닌가요? 1은 SOH이니깐 다른 걸 찍어보세요

yui의 이미지

irum66 wrote:
#include<stdio.h>

int main()
{
        int k=1;
        char y;
        y =(char)k;
        printf("----%c-----",y);
}

int k 를 char 형으로 형변환이 되지 않습니다... 혹시 int 형을 char형으로
변환할수 있는 방법이 있는지 궁금합니다.. [/code]

ascii 코드 1이 문자 '1'이 아니지요.
만약 int k의 k가 1글자의 숫자라면

#include<stdio.h>

int main()
{
        int k=1;
        char y;
        y =(char)k + 0x30;
        printf("----%c-----",y);
}

처럼 해주면 원하시는 결과를 얻을 수 있습니다.

혹시 숫자가 1자리가 아니라면
문자열로 바꾸셔야 합니다.
sprintf등의 함수를 사용하세요.

은빛연어의 이미지

irum66 wrote:
#include<stdio.h>

int main()
{
        int k=1;
        char y;
        y =(char)k;
        printf("----%c-----",y);
}

int k 를 char 형으로 형변환이 되지 않습니다... 혹시 int 형을 char형으로
변환할수 있는 방법이 있는지 궁금합니다.. [/code]

integer변수를 char로 형식을 변환해서 char로 넣었으니 문법은 맞습니다. 그리고 컴파일시 오류가 안나는것이 맞습니다... 하지만, 원하는 결과를 얻을 수가 없는것이 맞습니다. 한번 더 생각해 보셔야겠네요.

왜냐하면, 시스템마다 틀리지만 integer의 크기는 4바이트, char의 크기는 1바이트입니다.. 형변환만 해서 "="을 한다고 값이 들어가지는 않지요...

(단, 아래의 코드와 같이 1바이트에 들어있는 integer값을 4바이트 integer로 옮긴 경우 제외...)

main()
{
     /*char에는 interger값으로 -127 ~ + 128까지 넣을수 있습니다.*/
     char aaa = 100;
     int    bbb;

     bbb = aaa;
     printf("[%d]\n", bbb);
}

질문을 검색해 보시면 int를 char로 바꾸는 예를 찾을 수 있을꺼예요..
도움되시길...

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.