As we know, if we code a string like "\x61\x61" in a c source file, it actually means "aa". When inputting a char from the console for the function of getc or fgetc, is there anyway that we just give some Hex value? Maybe something like '\x61' but not 'a'.
How to make a Hexadecimal value input from the console for getc
642 Views Asked by user3236879 At
1
There are 1 best solutions below
Related Questions in C
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in GETC
- Does a character have to be casted to unsigned char before being compared to getc family returns?
- How can I make sure I will use the function version of a C standard library function like "getc" instead of the function-like macro version?
- Read a file and print the first letter of each word
- Issues with do/while loop ask question too many times
- How can I get only the first character entered by the user?
- Is my understanding of EOF (end of file) in C correct?
- Understanding struct pointer in C EDIT: Improper use of feof()
- C strcat inserts garbage into string
- Trouble reading file into 2d array with getc
- C Programming , getc() , stdin , file redirection
- In C, "getc" reads only three lines from text file
- Reading file of character data with while loop
- How to make a Hexadecimal value input from the console for getc
- puts() doesn't flush the buffer in io redirection program
- Can we use two different methods to read a file in a same block of code?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The short summary is no. But you probably want a bit more than this.
Assuming your environment is using some superset of ASCII (which, while not required by the language, is a pretty reasonable assumption for any machine and OS from this century),
"\x61\x61"is"aa". The conversion is done at compile time — if you inspect the compiler's output (for instance, by reading the assembly code it emits), you'll findaain there, not\x61\x61. This syntax is allowed in order to let people write characters that would otherwise be invalid in a code file (the most popular example being codepoint zero, written\x00or\000and essentially always abbreviated into\0(as long as it's not followed by a digit in the 0-7 range)).The key takeaway here is that your program does not see
\x61\x61, but ratheraa. You cannot recover the source representation — just like you can't tell24,030and0x18apart.On the other hand,
getcand friends read raw text input. They do no processing beyond newline conversion. If you want to do processing, then you have to do that in your own code. Such processing would also have to handle invalid sequences (such as\xyz) and resizing and moving the string around (because\x61is four characters andais one), which are problems that aren't as obvious as they might seem as first glance. Imposing this burden on all applications for the odd one that needs this specific processing would be incorrect.If you know you're going to be reading a hexadecimal escape sequence (and not straight characters), then you can just read hexadecimal input using
scanf:This approach, however, will not work for strings that mix in escape sequences, such as
x\x79z. For those strings, you'll have to write an actual string processor to convert them — much like the compiler does with your code.