create println in c code example
Example 1: c print program
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Example 2: c how to print
printf("Hello World");
printf("your text here");