Strings
Data Structures 15CS33
1.
Implement
i) Copying one string to another ii) Reversing the given string. Without using
string library functions in 'C'.
(December 2007)
(12 marks)
2.
Write
a function that accepts a string and returns 1 is the string is palindrome else
0 if string is not a palindrome without using any built in functions.
(June 2009)
(6 marks)
3.
Explain
with syntax following string handling functions.
a)
strncpy b) strcat c)strcmp
(December 2009)
(6 marks)
4.
What
is string? How string is declared and initialized?
(June 2010)
(05 marks)