0

Ex.No:1 INTRODUCTION TO UNIX OS

AIM:          To study about the Unix Operating system.  Introduction:             An operating system is a program that acts as an interface between the user and the computer. It is the one...

0

C program for Binary Search

Before going to the program first let us understand what is a Binary Search? Binary Search:                                 Binary search is...

0

C program to find Transpose of a Matrix

Before going to the program first let us understand what is Transpose of a Matrix? Transpose of a matrix:                           Transpose of a Matrix is...

0

C program for Sum of Two Matrix

Before going to the program first let is understand what is Sum of two Matrix? Sum of two matrix:                      Sum of two Matrix is a matrix obtained by...

0

C program for Matrix Multiplication

Before going to the program first let is understand what is Matrix Multiplication? Matrix Multiplication: Matrix Multiplication is nothing but the multiplication of two matrix to obtain a new matrix. To perform Matrix Multiplication the number of...

0

C program for Linear Search

Before going to the program first let us understand what is a Linear Search? Linear search: Linear search is the simplest search algorithm. It is also called as sequential search. Linear search is a method for finding a...

0

Reverse of a Number using while loop in C

Program code to find Reverse of a Number in C: #include<stdio.h> #include<conio.h> void main() { int n,a,r,s=0; clrscr(); printf(“\n Enter The Number:”); scanf(“%d”,&n); a=n; //LOOP FOR FINDING THE REVERSE OF A NUMBER while(n>0) { r=n%10;...

8

Reverse of a Number using For loop in C

Program code to find Reverse of a Number in C: #include<stdio.h> #include<conio.h> void main() { int i,n,r,s=0; clrscr(); printf(“\n Enter The Number:”); scanf(“%d”,&n); //LOOP FOR FINDING THE REVERSE OF A NUMBER for(i=n;i>0; ) { r=i%10;...

0

Reverse of a Number using do-while loop in C

Program code to find Reverse of a Number in C: #include<stdio.h> #include<conio.h> void main() { int n,a,r,s=0; clrscr(); printf(“\n Enter The Number:”); scanf(“%d”,&n); a=n; //LOOP FOR FINDING THE REVERSE OF A NUMBER do { r=n%10;...