C Programming Lab Manual
C Programming Lab Manual
WEEK 6: (Strings)
36. Write a program to read a string using gets(), find the string length without strlen().
37. Write a program to read a string and check whether it is palindrome string or not.
38. Write a program to read a string and count the numbers of vowels present in the
string.
39. Write a program to read a string using gets(), count number of uppercase,
lowercase, numeric digits and special characters in string.
WEEK 8: (Pointers)
47. Write a program to add, subtract and multiply two numbers using pointers.
48. Write a program to input and print array elements using pointers.
48. Write a program to find the sum of all array elements using pointers.
49. Write a program to find length of string using pointers.
50. Write a program to copy one string to other using pointers.