int main() { char str[20]="Hello Vilag!"; int i; for( i=0; i<20; i++) { putchar(str[i]); } putchar('\n'); return 0; }