C Programming Find maximum, minimum and average of 4 subjects using structure in C In this article, we have explained how to find the maximum, minimum and average of the marks of 4 subjects of different students using structure in C Programming Language.
C Programming Swap three numbers using functions in C In this article, we have explained how to swap three numbers using functions and implement the technique in C Programming Language.
C Programming Find Maximum, Minimum, Average of 3 numbers in C In this article, we have explored how to find Maximum, Minimum, Average of 3 numbers and implement the technique in C Programming Language.
C Programming Print initials of a name in C In this article, we have explained how to find the initials of a name and implement the technique in C Programming Language.
C Programming Sum of N natural numbers using recursion In this article, we have explained how to get the sum of N natural numbers using recursion and implement the technique in C Programming Language.
C Programming Find multiplication table of 2 numbers In this article, we have explained how to find the multiplication table of 2 numbers using functions and implement the technique in C Programming Language.
C Programming Return two digit after decimal point in C In this article, we have explained how to return two digits after decimal point using functions and implemented the technique in C Programming Language.
C Programming Return last two digits of an Integer in C In this article, we have explained how to return last two digits of an Integer using functions and implemented the technique in C Programming Language.
C Programming Print the triangular pattern (right angle triangle) in C In this article, we have take a look at how to print a triangular pattern (right angle triangle) with integers 1 to 15 in C Programming Language.
C Programming Print the 2x3 rectangular matrix in C In this article, we have take a look at how to print a rectangular matrix of size 2 * 3 with integers in C Programming Language with numbers from 1 to 6.
C Programming Find out which date is earlier in C In this article, we have explained the approach to check which date comes earlier among two dates (in format DD:MM:YYYY) and implemented this approach in C Programming Language.
C Programming Change time from 24 hours format to 12 hours format In this article, we have explained how to change time from 24 hours format (HH:MM) to 12 hours format (HH:MM + AM or PM) and implemented the approach in C Programming Language.
C Programming Check if given number is even or odd in C In this article, we have explained how to check if given number is even or odd and implemented the approach in C Programming Language.
C Programming Add each digit of a three digit number Write a program to enter a three digit number and separately print the the digits of the number and add it and provide the implementation in C programming language.
C Programming Find the absolute value of a number In this article, we have explained how to find the absolute value of a number and implement the program in C Programming Language.
C Programming Separate number from decimal place In this article, we will solve the problem of separation of number from before the decimal and after and provide the implementation in C programming language.
C Programming Print the pattern in C Print the following pattern and show its implementation in C programming language using escape sequences like horizontal and vertical tab.
Damped Harmonic Oscillations Forces acting on an oscillation particle during damped harmonic oscillations.