C Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesC Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 15th, 2003, 09:48 PM
shim shim is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Posts: 9 shim User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Getting a String object containing hexadecimal representation of a char

hi,

the problem is i want to get hexadecimal representation of contents of a 'char' variable in String format.

i.e.

char ch = 127;

its hexadecimal representation is '7F'

How to get a string objet which have this hexadecimal representation?

thanks in advance

Reply With Quote
  #2  
Old June 15th, 2003, 11:49 PM
infamous41md's Avatar
infamous41md infamous41md is offline
not a fan of fascism (n00b)
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Feb 2003
Location: ct
Posts: 2,756 infamous41md User rank is Sergeant (500 - 2000 Reputation Level)infamous41md User rank is Sergeant (500 - 2000 Reputation Level)infamous41md User rank is Sergeant (500 - 2000 Reputation Level)infamous41md User rank is Sergeant (500 - 2000 Reputation Level)infamous41md User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Days 11 h 4 m 29 sec
Reputation Power: 26
Code:
#include<stdio.h>

int main(int argc, char **argv)
{
        char x = 'A';
        char y[5] = "    ";

        y[0] = x;
        printf("value of y after copying x into it: %s\n",y);
        snprintf(y,4,"%x",x);

        printf("value of y after copying hex value of x into it: %s\n",y);
        return 1;
}

output is:
<oo7:Sun Jun 15> ./x
value of y after copying x into it: A
value of y after copying hex value of x into it: 41

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesC Programming > Getting a String object containing hexadecimal representation of a char


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
Stay green...Green IT