how to implement the string handling functions. is it necesary to imclude any libraries. give exampl
Posted
by thulasi
on Stack Overflow
See other posts from Stack Overflow
or by thulasi
Published on 2010-06-08T05:20:18Z
Indexed on
2010/06/08
5:32 UTC
Read the original article
Hit count: 163
Filed under:
c
main()
{
char a,b
a='A';
b='B';
strcat(b,a);
prontf("a:%s b:%s",a,b);
}
© Stack Overflow or respective owner