0% found this document useful (0 votes)
6 views1 page

C Programming Tasks and Solutions

Uploaded by

gauravdakhore15
Copyright
© All Rights Reserved
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
0% found this document useful (0 votes)
6 views1 page

C Programming Tasks and Solutions

Uploaded by

gauravdakhore15
Copyright
© All Rights Reserved
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

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.
[Link] matrix in row major format.
[Link] 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.

You might also like