12345,BC BC Press any key to continue include "stdio.h"include "string.h"main(){ int i,j,nLen;char a[]="ABC:12345,BC BC";nLen = strlen(a);puts(a);for (i=0;i<nLen;i++){ if (a[i]==':'){ for (j=i+1;j<nLen;j++){ printf("%c", a[j]);} printf(...