/** * @Comment: WSU - Fall 06 - CS 3830-0 * @Title: p5p1.c - Project 5 prog 2 * @Author: Vincenzo Maggio */ #include #include #include void main( void) { system("color f0");system("cls");printf("\n CS 3830 - Project 5 prog.2 \n\n"); printf( " I am going to read at 0xabcd1234 and the next 32 bytes.\n\n part a)\n "); /* let's pick 0xabcd1234 */ printf( "\x34\x12\xcd\xab_%08x.%08x.%08x.%08x.|%s|" ); printf( "\n\n part b)\n "); printf( "\x34\x12\xcd\xab_%08x.%08x.%08x.%08x.|%08x.%08x.%08x.%08x|" ); printf("\n\n part c)\n "); printf( "\x34\x12\xcd\xab_%08x.%08x.%08x.%08x.|%08d.%08d.%08d.%08d|" ); printf("\n"); }