EX.NO:1a INTRODUCTION TO VI EDITOR
AIM: To study about visual editor commands in Unix About vi editor: The default editor that comes with the UNIX operating system is called vi (visual editor). The UNIX vi editor is a full...
AIM: To study about visual editor commands in Unix About vi editor: The default editor that comes with the UNIX operating system is called vi (visual editor). The UNIX vi editor is a full...
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...
Before going to the program first let us understand what is a Binary Search? Binary Search: Binary search is...
Before going to the program first let us understand what is Transpose of a Matrix? Transpose of a matrix: Transpose of a Matrix is...
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...
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...
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...
Before going to the program first let us understand what is a Quadratic Equation? Quadratic Equation: ...
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;...
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;...