The document outlines a series of programming tasks to be implemented in C, including creating a simple calculator, computing roots of quadratic equations, counting vowels and consonants, and performing matrix operations. Additional tasks include implementing sorting algorithms, string operations, and using structures and pointers for data manipulation. Each task emphasizes fundamental programming concepts and techniques in C.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
27 views2 pages
Pop 1
The document outlines a series of programming tasks to be implemented in C, including creating a simple calculator, computing roots of quadratic equations, counting vowels and consonants, and performing matrix operations. Additional tasks include implementing sorting algorithms, string operations, and using structures and pointers for data manipulation. Each task emphasizes fundamental programming concepts and techniques in C.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2
1. Develop a C program simulate a simple calculator.
2. Develop a C program to compute the roots of a
quadratic equation by accepting the coefficients. Print appropriate messages. 3. W rite a program to count number of vowels and consonants in a string using switch case. 4. W rit a C program to display the following by reading the number of rows as input. 1 12 1 12 3 2 1 12 3 4 3 2 1 5. Implement Binary search on integers /names. 6. Develop a program implement matrix multiplication and validate the rules of multiplication are checked. 7. Develop a program to check palindrome 8. W rite a c program to swap two numbers using call by value. 9. W rite functions to implement string operations such as compare, concatenate, string length, convince the parameters passing techniques 10. Implement structure to read, write compute average marks and the students scoring above and below the average marks for a class of N students. 11. Develop a program using pointers to compute the sum mean and standard deviation of all elements stored in an array of n real number 12. W rite a program to print the following pattern. 1 12 12 3 13. W rite a C program to perform addition of 2 D array 14. W rite a C program to implement bubble sort technique [ ascending order] 15. W rite a C program to transpose a M*N matrix 16. W rite a C program to compare 2 strings without using built in function 17. W rite a C program to swapping of 2 numbers using call by reference 18. W rite a C program to find the product of 2 given matrix 19. Develop a C program to concatenate 2 strings without using built in function 20. W rite a program to print name, U SN, Subject & marks of the student using structure.