C > Beginners Lab Assignments
Program to print the ascii equivalent of all chararters in the entered string
Program to print the ascii equivalent of all chararters in the entered string #include
#include
#include
int ascii_value(char c); void main() { int i,a; char c; clrscr(); printf("Please enter a string."); printf(" String will be terminated if you press Ctrl-Z."); printf(" STRING:- "); for (i=0;(c=getchar())!=EOF;i++) { a=ascii_value(c); printf("%d%c",a,' '); } printf(" are the ascii values of the characters of the entered string"); printf(" respectively."); printf(" HAVE A NICE DAY! BYE."); getch(); } int ascii_value(char c) { int a; a=(int)c; return(a); }
C Codes
Beginners
C on Unix
Code Snippets
Data Structures
File Operations
Games Graphics
Gnu-Linux
Hardware
Mathematics
Miscellaneous
Small Programs
Sorting