Answers for "C %s"

C
1

%.*s in c

example:
printf("%.*s",3,"hello");

output:hel
here 3 represents the length of the string to be printed in the "hello string".
Posted by: Guest on May-11-2020
0

C %s

%s - Take the next argument and print it as a string
%d - Take the next argument and print it as an int
Posted by: Guest on July-09-2020

Code answers related to "C"

Browse Popular Code Answers by Language