SOURCE CODE: #include<stdio.h> #include<conio.h> void main() { int i,j,c,n=1; clrscr(); while(n<=15) { printf("...
Showing posts with label ASCII. Show all posts
Showing posts with label ASCII. Show all posts
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 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("\...
Subscribe to:
Posts (Atom)