We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
1.
Write a C program to calculate the sum of array
elements using pointers as an argument. 2. Write a C program to find the missing number in the array. 3. Write a C program to copy consonants of one string to another and count copied characters. 4. Write a C program to find the frequency of each vowel in a string. 5. Write a C program to insert a sub-string in to given main string. 6. Write a C program to count the number of digits in an integer. 7. Write a C program to read the first line from a file. 8. Accept number of rows and columns and read elements of matrix. a.Print matrix in row major format. b.Print matrix in column major format. 9. Write a C program to create a student database using file. Search for a particular student from the file and print his/her details. 10. Given a string s containing just the characters like: '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if the number of opening and closing brackets is same.