[ Links Will Be Posted Soon ]
General
- Write a c program to check given number is perfect number or not.
- Write a c program to check given number is Armstrong number or not.
- Write a c program to check given number is prime number or not.
- Write a c program to reverse any number.
- Write a c program to check given number is strong number or not.
- Write a c program to find out sum of digits of number using single statement.
- Write a c program to find out sum of digit of given number. [ Using Recursion ]
- Write a c program to check given number is palindrome number
- Write a c program to check given string is palindrome number or not.
- Write a c program to find out power of number.
- Write a c program to add two numbers without using addition operator.
- Write a c program to subtract two numbers without using subtraction operator.
- Write a c program to find largest among three numbers using binary minus operator.
- Write a c program to find largest among three numbers using conditional operator
- Write a c program to find out generic root of any number.
- Write a c program to solve quadratic equation.
- Write a c program which passes one dimension array to function.
- Write a c program which passes two dimension array to function.
- Write a c program which passes structure to function.
- Write a c program for Floyd’s triangle.
- Write a c program to print Pascal triangle.
- Write a c program to generate multiplication table.
- Write a c program to get factorial of given number.
- Write a c program to find out prime factor of given number.
- Write a c program to find out NCR factor of given number.
- Write a c program to print Fibonacci series of given range.
- Write a c program to print ASCII value of all characters.
- Write a c program to check given year is leap year or not.
- Write a c program which takes password from user.
- Write a scanf function in c which accept sentence from user.
- Write a scanf function in c which accept paragraph from user.
- Write a c program to print the all prime numbers between 1 to 300.
L.C.M and H.C.F.1. Write a c program to find out L.C.M. of two numbers.
2. Write a c program to find out H.C.F. of two numbers.
3. Write a c program to find out G.C.D. of two numbers.
Swapping1. Write a c program to swap two numbers.
2. Write a c program to swap two numbers without using third variable.
3. Write a c program for swapping of two arrays.
4. Write a c program for swapping of two string.
Conversion
- Write a c program to convert decimal number to hexadecimal number.
- Write a c program to convert decimal number to octal number.
- Write a c program to convert octal number to decimal number.
- Write a c program to convert octal number to hexadecimal number.
- Write a c program to convert hexadecimal number to decimal number.
- Write a c program to convert hexadecimal number to octal number.
- Write a c program to convert binary number to decimal number.
- Write a c program to convert binary number to hexadecimal number.
- Write a c program to convert binary number to octal number.
- Write a c program to convert decimal number to binary number.
- Write a c program to convert hexadecimal number to binary number.
- Write a c program to convert octal number to binary number.
- Write a c program to convert farehnite to centigrade.
- Write a c program to convert centigrade to farehnite.
StringWith Using Library Functions :
- Find the Length of the String
- Concat Two Strings
- Copy One String Into Other
- Convert given String into Uppercase String
- Convert given String into Lowercase String
- Count Total Number of Uppercase,Lowercase.
- Check Whether Given Character is Capital or Not
- Check Whether Given Character is Lowercase or Not
- Check Whether Entered Number is Palindrome or Not
- Convert String into Integer
- Convert String to Float
- Length of the String
- Concat Two Strings
- Reverse String
- Compare Two Strings
- Copy One String Into Other
- Check Whether String is substring or not
Matrix1. Write a c program for addition of two matrices.
2. Write a c program for subtraction of two matrices
3. Write a c program for multiplication of two matrices.
4. Write a c program to find out sum of diagonal element of a matrix.
5. Write a c program to find out transport of a matrix.
File1. Write a c program to open a file and write some text and close its.
2. Write a c program to delete a file.
3. Write a c program to copy a file from one location to other location.
4. Write a c program to copy a data of file to other file.
5. Write a c program which display source code as a output.
6. Write a c program which writes string in the file.
7. Write a c program which reads string from file.
8. Write a c program which writes array in the file.
9. Write a c program which concatenate two file and write it third file.
10. Write a c program to find out size of any file.
11. Write a c program to know type of file.
12. Write a c program to know permission of any file.
13. Write a c program to know last date of modification of any file.
14. Write a c program to find size and drive of any file.
Complex number1. Write a c program for addition and subtraction of two complex numbers.
2. Write a c program for multiplication of two complex numbers.
3. Write a c program for division two complex numbers.
Series1. Write a c program to find out the sum of series 1 + 2 + …. + n.
2. Write a c program to find out the sum of series 1^2 + 2^2 + …. + n^2.
3. Write a c program to find out the sum of series 1^3 + 2^3 + …. + n^3.
4. Write a c program to find out the sum of given A.P.
5. Write a c program to find out the sum of given G.P.
6. Write a c program to find out the sum of given H.P.
7. Write a c program to find out the sum of series 1 + 2 + 4 + 8 … to infinity.
Array1. Write a c program to find out largest element of an array.
2. Write a c program to find out second largest element of an unsorted array.
3. Write a c program to find out second smallest element of an unsorted array.
4. Write a c program which deletes the duplicate element of an array.
5. Write a c program for delete an element at desired position in an array.
6. Write a c program for insert an element at desired position in an array.
Sorting1. Write a c program for bubble sort.
2. Write a c program for insertion sort.
3. Write a c program for selection sort.
4. Write a c program for quick sort.
5. Write a c program for heap sort.
6. Write a c program for merge sort.
7. Write a c program for shell sort.
Recursion1. Write a c program to find factorial of a number using recursion.
2. Write a c program to find GCD of a two numbers using recursion.
3. Write a c program to find out sum digits of a number using recursion.
4. Write a c program to find power of a number using function recursion.
5. Write a c program to reverse any number using recursion.
Size of data type1. Write a c program to find the size of int without using sizeof operator.
2. Write a c program to find the size of double without using sizeof operator.
3. Write a c program to find the size of structure without using sizeof operator.
4. Write a c program to find the size of union without using sizeof operator.
Using pointer1. Write a c program for concatenation two string using pointer.
2. Add Two Numbers Using Pointer
Searching1. Write a c program for linear search.
2. Write a c program for binary search.
3. Write a c program for binary search using recursion.
Area and volume1. Write a c program to find the area of circle.
2. Write a c program to find the area of any triangle.
3. Write a c program to find the area of rectangle.
4. Write a c program to find the area of equilateral triangle.
5. Write a c program to find the area of trapezium.
6. Write a c program to find the area of right angle triangle.
7. Write a c program to find the volume and surface area of cube.
8. Write a c program to find the surface area and volume of a cone.
9. Write a c program to find the perimeter of a circle, rectangle and triangle.
C program with very large numbers1. Write a c program to find factorial of 100 or very large numbers
2. Write a c program to multiply the two very large number (larger the long int)
3. Write a c program for division of large number (larger than long int)
0 comments:
Post a Comment
Your Feedback :This is Growing Site and Your Feedback is important for Us to improve the Site performance & Quality of Content.Feel Free to contact and Please Provide Name & Contact Email