Skip to main content
Search
Search This Blog
Livecodo
Pages
Home
Courses
Blog
About us
More…
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
C language program
Write a c program on 2D array to Increase & Decrease no. of subarrays
Write a c program to increase or decrease the existing size of an 1D array
Write a C program to find the largest integer in a list of integers
Write a C program to find the roots of a quadratic equation.
C program to find the GCD (greatest common divisor) of two given integers.
Write a c program to take multiline string input and print individual string length .
Write a C program to convert a Roman numeral to its decimal Equivalent.
Write a c program to reverse the individual word of a given string Explanation: input : Welcome To livecodo output: emocleW oT odocevil.
Write a c program to calculate Area of Rectangle , Perimeter of a Rectangle and Diagonal of a Rectangle.
Write a C program to calculate the following Sum: Sum=1-x^2/2! +x^4/4!-x^6/6!+x^8/8!-x^10/10!.
Write a C program to generate all the prime numbers between 1 and n, where n is a value supplied by the user.
A Fibonacci sequence is defined as follows: the first and second terms in the sequences are 0 and 1. Subsequent terms are found by adding the preceding two terms in the sequence. Write a C program to generate the first n terms of the sequence.
Write a C program to find the sum of individual digits of a positive integer.
Write a C program, which takes two integer operands and one operator from the user, performs the operation and then prints the result. (Consider the operators +,-,*, /, % and use switch statement)
The total distance travelled by vehicle in ‘t’ seconds is given by distance = ut+1/2at2 where ‘u’ and ‘a’ are the initial velocity (m/sec.) and acceleration (m/sec2). Write C program to find the distance travelled at regular intervals of time given the values of ‘u’ and ‘a’. The program should provide the flexibility to the user to select his own time intervals and repeat the calculations for different values of ‘u’ and ‘a’.
Write a c program to calculate total area of Cylinder and volume of a cylinder.
Write a c program to calculate Area of Square , Perimeter of a Square and Diagonal of a Square.
Create a program to perform arithmetic operations using macros.
Write a code to display present date and time using c language.
Write a c program to demonstrate pre-processor directives Macros
Write a c program to demonstrate pre-processor directives Conditional Compilation
Write a C program that uses functions to perform the following Operations. i) Reading a complex number ii) Writing a complex number iii) Addition of two complex numbers iv) Multiplication of two complex numbers
Write a c program to store records of n students based on roll_no, name, gender and 5 subject marks
i) Calculate percentage each student using 5 subjects. ii) Display the student list according to their percentages.
Write a C program to store n employee records based on EMP_ID,EMP_NAME,EMP_DEPTID,EMP_PHNO,EMP_SALARY and display all the details of employees using EMP_NAME in sorted order.
Write a c program to implement selection Sort & Bubble sort
Write a C program to reverse the elements within a given range in a sorted list
Write a c program to implement Insertion sort & Quick sort
Write a c program to sort the given n integers and perform following operations i) Find the products of every two odd position elements ii) Find the sum of every two even position elements
Write a C Program to implement Merge Sort
Write a c program to sort in ascending order and reverse the individual row elements of an mxn matrix
Write a c program to sort elements in row wise and print the elements of matrix in Column major order
Write a c program to perform linear Search.
Write a c program to perform binary search.
Write a c program to Create a single Linked list and perform Following Operations
A.Insertion At Beginning
B. Insertion At End
C. Insertion After a particular node
D. Insertion Before a particular node
E. Insertion at specific position
F. Search a particular node
G. Return a particular node
H. Deletion at the beginning
I. Deletion at the end
J. Deletion after a particular node
K. Deletion before a particular node
L. Delete a particular node
M. Deletion at a specific position
Write a program to Reverse a singly Linked list.
Popular Posts
Dynamic Memory allocation in C
Searching and sorting Algorithm in C