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 a method but I can not find out now…
Suppose you have a string which is NOT null terminated and you know its
Share
There is a possibility with printf, it goes like this:
No need to copy anything, no need to modify the original string or buffer.