Mega Code Archive

 
Categories / C / String
 

Output string

#include <stdio.h> int main(void) {   printf("%s %s %s", "1", "2", "3");   return 0; }