C PROGRAM TO FIND WHETHER STRING IS PALINDROME :

C PROGRAM TO CHECK WHETHER GIVEN YEAR IS LEAP YEAR OR NOT

  Sample Output :

C PROGRAM TO FIND ROOTS OF QUADRATIC EQUATION

C# PROGRAM TO GET FILE NAMES IN THE GIVEN DIRECTORY original post

Sample Output 1: Sample Output 2:

C# PROGRAM TO GET ALL FILE PATHS IN A GIVEN DIRECTORY original post

Sample Output 1 : Sample Output 2 :

C PROGRAM EXAMPLE FOR toupper() FUNCTION :

 

C PROGRAM EXAMPLE FOR tolower() FUNCTION

 

C PROGRAM TO PERFORM ARITHMETIC OPERATIONS USING SWITCH LOOP :

 

original post

  For C Program :  C Program to find the Factorial of Given Number

C# Program to find whether the Number is Palindrome or not original post

Output 1: Output 2: For C Program:   C Program To Find The Number Palindrome or Not

C# PROGRAM TO PRINT THE REVERSE OF A GIVEN NUMBER original post

  For C Program : C Program To Find The Reverse Of a Given Number  

C# PROGRAM FOR IMPLEMENTING PRODUCT OF MATRICES USING ARRAYS : original post

   Output: In the above program the code can be shortened by reducing the number of for loops or by using functions, but for making it easier to understand by the beginners, the program is made as… Continue Reading C# PROGRAM FOR PRODUCT OF MATRICES USING ARRAYS

Implementing Addition of Two Matrices Using 2D-Arrays: original post

In the above program the code can be shortened by reducing the number of for loops, but for making it easier to understand by the beginners, the program is made as simple as possible. Some of the different Sample Outputs… Continue Reading C# PROGRAM FOR ADDITION OF MATRICES USING ARRAYS

Implementing Subtraction of Matrices Using 2D-Arrays: original post

In the above program the code can be shortened by reducing the number of for loops or by using functions, but for making it easier to understand by the beginners, the program is made as simple as possible. Some of the… Continue Reading C# PROGRAM TO PERFORM SUBTRACTION ON MATRICES USING ARRAYS