Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Which statement will you add to the following program to ensure that the program outputs "IndiaBIX" on execution? #include int main() { char s[] = "IndiaBIX"; char t[25]; char ps, pt; ps = s; pt = t; while(ps) pt++ = ps++; / Add a statement ?->(Show Answer!)
1. Which statement will you add to the following program to ensure that the program outputs "IndiaBIX" on execution? #include int main() { char s[] = "IndiaBIX"; char t[25]; char ps, pt; ps = s; pt = t; while(ps) pt++ = ps++; / Add a statement here / printf("%s\n", t); return 0; }