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...
C Program to Arrange the given Numbers in Descending order using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[10],n,c,i,j; clrscr(); printf("Enter the total ...
C Program to Arrange the given Numbers in Ascending order using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[10],n,c,i,j; clrscr(); printf("Enter the total ...
C Program to Display the Equivalent Memory Addresses for the given values using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a[10],i,*p; clrscr(); printf("\nEnter 10 Nombe...
C Program to Arrange the given Names in Alphabetical order using Array
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> #include<string.h> void main() { char name[40][100],temp[20]; in...
C Program to Display Various Colors using ASCII Codes
ASCII C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int i,j,c,n=1; clrscr(); while(n<=15) { printf("...
C Program to Produce a Warning Sound
ASCII C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> main() { clrscr(); printf("%c",7); getch(); }
C Program to Display "Turbo C++" Window
ASCII C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); for(i=1;i<=80;i++) {
C Program to Display "Turbo C" Window
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); for(i=1;i<26;i++) { for(j=1;j<...
C Program to Display a Rectangle or Square box for the given values
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int x,y,l,h,n; clrscr(); printf("Enter the values of ...
C Program to Display Equivalent ASCII values for each characters of the given String
ASCII C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> #include<string.h> void main() { static char name[20]; int i,l;...
C Program to Display Equivalent ASCII Code for 0 to 255
ASCII C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int a; clrscr(); for(a=1;a<=255;a++) { printf("\...
C Program for Tic Tac Toe Game
C Programs
SOURCE CODE: #include<stdio.h> #include<conio.h> #include<process.h> #include<string.h> void sel(); void con()...
C Program for Sequential Search of a given number
C Programs
Description: It is a simplest form of searching in which the target item is searched by examining the records in the list one by one. If th...
C Program for Tower of Hanoi Problem using Recursion
C Programs
Description: The tower of Hanoi is a traditional problem, which consists of moving n disks from source to destination using a temporary tow...
C Program for the Conversion of Decimal to Octal Number
C Programs
Description: Decimal Numbers: Decimal numbers has a radix 10. Decimal numbers use a combination of 0,1,2,3,4,5,6,7,8,9. Octal Numbers: ...
Subscribe to:
Posts (Atom)