#include <stdio.h> int main(void){ char *str = "www.java2java.com"; for(; *str; str++){ putchar(*str); } }
www.java2java.com