Concat values from array of strings to another static string in c
I am working on console application in c in VS 2010
char rsp[25][9]; //rsp is properly populated by another function suppose
it contain three values hello,Goodbye,See you
char txt[] = "Message: ";
I want to concat txt[ ] with each string of rsp[ ][ ], how should i
achieve it
No comments:
Post a Comment