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