The document lists 19 C language programs including printing tables, adding even and odd numbers, finding maximum and second maximum numbers, performing operations on arrays and matrices, and manipulating strings.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
16 views
C Program List
The document lists 19 C language programs including printing tables, adding even and odd numbers, finding maximum and second maximum numbers, performing operations on arrays and matrices, and manipulating strings.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
C – Language Program List
1. Write a program to print a table for a given integer number.
2. Write a program to print an addition of even and odd numbers. 3. Write a program to find 2nd maximum number from 4 numbers. 4. Write a program to find maximum number from 4 numbers. 5. Write a program to insert an element in 1-D array. 6. Write a program to delete an element from 1-D array. 7. Write a program to sort the 1 –D array. 8. Write a program to find sum and average of 10 numbers. 9. Write a program to find largest from n numbers. 10.Write a program to find transpose of the given a matrix. 11.Write a program to print a 1-D array. 12.Write a program to find multiplication of 2 matrix elements.(size=2 * 2 ) 13.Write a program to find multiplication of 2 matrix elements.(size=3 * 3 ) 14.Write a program to find length of given string using strlen(). 15.Write a program to copy one string to another using strcpy(). 16.Write a program to convert the given string in lowercase using strlwr(). 17.Write a program to convert the given string in uppercase using strupr(). 18.Write a program to concat two strings using strcat(). 19.Write a program to compare 2 strings without using strcmp().