Contact: aviboots(AT)netvision.net.il
39,990 questions
51,935 answers
573 users
#include <iostream> int main() { char s[] = "c++ programming"; char *p; p = s; while (*p) { std::cout << *p; p++; } return 0; } /* run: c++ programming */