Answers for "string formatting in c"

C
4

format specifier fro float in printf

printf("%0k.yf" float_variable_name)

Here k is the total number of characters you want to get printed. k = x + 1 + y (+ 1 for the dot) and float_variable_name is the float variable that you want to get printed.

Suppose you want to print x digits before the decimal point and y digits after it. Now, if the number of digits before float_variable_name is less than x, then it will automatically prepend that many zeroes before it.
Posted by: Guest on October-11-2020
0

c create formatted string

sprintf

// Allocates storage
char *hello_world = (char*)malloc(13 * sizeof(char));
// Prints "Hello world!" on hello_world
sprintf(hello_world, "%s %s!", "Hello", "world");

Credit: akappa
Posted by: Guest on May-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language