I need to form a string, inside each iteration of the loop, which contains the loop index i:
for(i=0;i<100;i++) { // Shown in java-like code which I need working in c! String prefix = "pre_"; String suffix = "_suff"; // This is the string I need formed: // e.g. "pre_3_suff" String result = prefix + i + suffix; } I tried using various combinations of strcat and itoa with no luck.