how to print method in c in printf code example
Example 1: c how to print
printf("Hello World");
printf("your text here");
Example 2: how to print % in printf
printf("100 %% 23"); // the first % is a escape charachter
printf("Hello World");
printf("your text here");
printf("100 %% 23"); // the first % is a escape charachter