Contact: aviboots(AT)netvision.net.il
39,948 questions
51,890 answers
573 users
#include <stdio.h> #include <string.h> int main() { char s[] = "c is a general purpose procedural computer programming language"; const char* lastpart = strrchr(s, ' ') + sizeof(char); printf("%s", lastpart); return 0; } /* run: language */