Tagged Questions
The null-character tag has no wiki summary.
11
votes
4answers
191 views
What is the difference between (char)0 and '\0'? in C
With respect to character array What is the difference between using (char)0 and '\0' to denote the terminating null character? Which is advisable?
3
votes
4answers
49 views
fgetc null terminator
I'm doing an exercise in K&R:
Write a program detab that replaces tabs in the input with the proper number of blanks to space to the next tab stop.
And this is what I have so far (w/o error ...
3
votes
4answers
234 views
in linux, is it normal that there is no null character at the end of file
in linux, is it normal that there is no null character at the end of file?
I made a empty file and open with mouse pad write az.
save it.
when I open the file up with hex editor, there is no null ...
2
votes
2answers
382 views
assign string containing null-character (\0) to a variable in bash
while trying to process a list of file-/foldernames correctly (see my questions of yesterday) through the use of a NULL-character as a delimiter i stumbled over a strange behaviour of bash that i ...
2
votes
1answer
281 views
How can I match a null byte (0x00) in the Visual Studio binary editor with a find using a regular expression?
Open a file in the Visual Studio binary editor that contains a null byte (0x00), then use the Quick Find feature (Ctrl +F) to find null bytes.
I would have thought I could use a regular expression ...
2
votes
2answers
1k views
How to create C++ istringstream from a char array with null(0) characters?
I have a char array which contains null characters at random locations. I tried to create an iStringStream using this array (encodedData_arr) as below,
I use this iStringStream to insert binary ...
1
vote
1answer
53 views
bash “for in” looping on null delimited string variable
I want to iterate through a list of files without caring about what characters the filenames might contain, so I use a list delimited by null characters. The code will explain things better.
# Set ...
1
vote
1answer
61 views
SQLite strings with NUL
Can strings in SQLite 3 include NUL characters?
If the answer to 1 is "yes", how can they be written in SQL queries? SQLite doesn't seem to have chr or char functions.
1
vote
2answers
271 views
Storing NUL characters (ASCII 0)
I've created a program in C++ that prompts the user for a filename and for the requested filesize. The program checks if the requested filesize is bigger than the actual filesize and then adds null ...
1
vote
3answers
188 views
Why does this C++ program print irrelevant characters?
Hey i am new to programming in C++, and i get the hang of it but i got stuck on this one simple problem i am suppose to create a shift cipher using the letters A-Z and shifting them 3 places, i get ...
0
votes
0answers
68 views
NULL characters in address for buffer overflow
I am trying to reproduce a buffer overflow. The address that I am trying to pass in has two null hex characters in it (i.e. 0x00547e00). There are also 4 more bytes that come after it (i.e 0x11111111 ...
0
votes
1answer
137 views
What are the ramifications of null bytes and multipart/form-data?
A third party is sending us a flat file that is supposed to contain exclusively printable ASCII characters. However, we've discovered that there's a string of about 50 0x00 bytes in the middle of the ...