How to append strings using sprintf ?
- by rejinacm
Hey everybody,
Thank you all before I start.
I am facing a serious issue with sprintf.
suppose my code snippet is :
sprintf(Buffer,"Hello World");
sprintf(Buffer,"Good Morning");
sprintf(Buffer,"Good Afternoon");
.
.
.
Some hundred sprints....
If i do like this, its getting overwritten.
How can I avoid overwritting using sprintf. If i give a printf at the end i want to see all the lines.
How to xchieve this.