Question: Using C programing in code blocks Display ASCII (128 characters) table for characters of your first and last name. Specs: .Must use functions: convert to
"Using C programing in code blocks"
Display ASCII (128 characters) table for characters of your first and last name. Specs: .Must use functions: convert to binary (int number in dec convert to hex (int number in dec) . Sample input: "Ryan Kopinsky" Sample output: char lt dec lt bin lt hex R 82 01010010 52 y 121 01111001 79 a 97 01100001 61 n 110 01101110 6E 32 00100000 20 Homework (cont.) Display ASCII (128 characters) table for characters of your first and last name Deliverables: Working, sufficiently-commented code Hints: . Array size # of characters in your full name + 2: one additional space for between first and last name characters One additional space for '0, to terminate the string For example, for "Ryan Kopinsky" use name [14] Use fgets to read in name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
