#include <stdio.h>
int main() {
char * c="Simple String";
printf("1. puts test ------\n");
puts(c);
puts("So Simple String");
printf("2. puts test ------\n");
fputs(c, stdout);printf("\n");
fputs("So Simple String", stdout);printf("\n");
printf("3. end of main ------\n");
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: