RUN#include<iostream.h> #include <stdio.h> #include <string.h> int main () { char str[30] = "Hello"; strcat (str," World"); puts (str); return 0; }