Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
#include <stdio.h> int main(void) { char *s = "c c++ c# java python php"; fputs(s, stdout); } /* run: c c++ c# java python php */
#include <stdio.h> int main(void) { char *s = "c c++ c# java python php"; fprintf(stdout, "%s", s); } /* run: c c++ c# java python php */
#include <stdio.h> #include <string.h> int main(void) { char *s = "c c++ c# java python php"; int len = strlen(s); for (int i = 0; i < len; i++) putc(s[i], stdout); } /* run: c c++ c# java python php */
#include <stdio.h> #include <string.h> #include <unistd.h> int main(void) { char *s = "c c++ c# java python php"; write(1, s, strlen(s)); } /* run: c c++ c# java python php */