C programming

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • neha_chhatre@yahoo.co.in

    #1

    C programming

    how to convert integer to char in C

  • Joe Wright

    #2
    Re: C programming

    neha_chhatre@ya hoo.co.in wrote:
    how to convert integer to char in C
    >
    A char is an integer. So are int, short and long, etc. Converting values
    of one type to another is done by cast and/or assignment following
    normal conversion rules. Read your C book. K%R2 is recommended.

    --
    Joe Wright
    "Everything should be made as simple as possible, but not simpler."
    --- Albert Einstein ---

    Comment

    Working...