Contact: aviboots(AT)netvision.net.il
39,989 questions
51,934 answers
573 users
#include <stdio.h> #include <string.h> int main() { char s[] = "c \n c++"; s[strcspn(s, "\n")] = ' '; puts(s); return 0; } /* run: c c++ */