SOURCE CODE: #include<stdio.h> #include<conio.h> #include<string.h> void main() { char str1[20],str2[20]; int i; ...
Showing posts with label C Programs. Show all posts
Showing posts with label C Programs. Show all posts
C Program for Matrix Multiplication using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[3][3],b[3][3],c[3][3],i,j,k; clrscr(); printf(&qu...
C Program to Find the Biggest and Smallest Number from the given Numbers using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[10],n,i,big,small; clrscr(); printf("Enter t...
C Program to Find the Smallest Number from the given Numbers using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[5],n,i,small; clrscr(); printf("Enter the to...
C Program to Find the Biggest Number from the given Numbers using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[5],n,i,big; clrscr(); printf("Enter the tota...
Subscribe to:
Posts (Atom)