This is a team project to create a function that produces output according to a format. The project involves handling different conversion specifiers, custom conversion specifiers, flag characters, length modifiers, field width, precision, and more
Task List 1.Write a function that produces output according to a format. 2.Handle the following conversion specifiers: d, i, u, o, x, X. 3.Handle the following conversion specifiers: p. 4.Use a local buffer of 1024 chars in order to call write as little as possible. 5.Handle the following custom conversion specifier: %. 6.Handle the following custom conversion specifier: S. 7.Handle the following flag characters for non-custom conversion specifiers: +, , and #. 8.Handle the following length modifiers for non-custom conversion specifiers: l and h. 9.Handle the field width for non-custom conversion specifiers. 10.Handle the precision for non-custom conversion specifiers. 11.Handle the 0 flag character for non-custom conversion specifiers. 12.Handle the - flag character for non-custom conversion specifiers. 13.Handle the following custom conversion specifier: r 14.Handle the following custom conversion specifier: R. 15.All the above options work well together