The ANSI C Programming Languange - Book C - Programming Language
Created: 2022-08-14 Tags: #fleeting
Uses: #include <stdio.h>
#include <stdio.h>
The %s format in printf expects argument passed to be characters that ends with \0. Meaning its possible to use %s with value being only \0. The result will be (null)
%s
\0
(null)
https://cplusplus.com/reference/cstdio/printf/
printf is not part of the C language
printf and manipulating its outputs