#include "string.h" #include "stdlib.h" #include "stdio.h" int main( void ) { char *s = "test_string"; int i = 47; char c = 'X'; printf( "string '%s', decimal %d, hex 0x%X, character '%c'\n", s, i, i, c ); exit( 0 ); }