Suppose you have a string which is NOT null terminated and you know its exact size, so how can you print that string with printf in C? I recall such method but I can not find out know...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is a possibility with printf, it goes like this:
No need to copy anything, no need to modify the original string or buffer. |
|||||||||||||||
|
I edited the code,heres another way:
|
|||||||||||
|
|
This means to print UP TO length bytes OR a null byte, whichever comes first. If your non-null-terminated array-of-char contains null bytes BEFORE the length, printf will stop on those, and not continue. |
||||
|
You can use an fwrite() to stdout!
This way you will output the first chars (number defined in number_of_chars variable ) to a file, in this case to stdout (the standard output, your screen)! |
|||
|
|

Ccontext, all strings are null terminated. Arrays of char without a null in them are not strings ... they are arrays of char :) – pmg Sep 22 '10 at 9:30