/* C Program - Convert Uppercase String to Lowercase */
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
clrscr();
char str[20];
int i;
printf("Enter the String (Enter First...
The perfect website for a perfect Engineer
Home > All posts
Saturday, 30 September 2017
Search an element in an array
#include<stdio.h>
void main() {
int a[30], ch, num, i;
printf("\nEnter no of elements :");
scanf("%d", &num);
printf("\nEnter the values :");
...
Matrix addition,multiplication and substraction using c program
/* MATRIX ADDITION, SUBTRACTION AND MULTIPLICATION */
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,c,r,k;
int...
Find mean,median and mode using c program
#include<stdio.h>
main()
{
int i,j,a[20]={0},sum=0,n,t,b[20]={0},k=0,c=1,max=0,mode;
float x=0.0,y=0.0;
printf("\nEnter the limit\n");
scanf("%d",&n);
printf("Enter the set of numbers\n");
for(i=0;i<n;i++)
...
Subscribe to:
Posts (Atom)
Convert a square matrix to Lower and Upper Triangular Matrix
Upper and Lower triangle Matrix Using C program In this program we will be discussing on how to convert a square matrix into correspon...