design a c program to find the ASCII value of the alphabet
Answers
Answered by
3
Explanation:
Program #1: Write a C programming code to print ASCII value of String.
#include <stdlib.h>
int main(int argc, char *argv[])
{
char str[100];
int i=0;
printf("Enter any string to get ASCII Value of each Character \n");
scanf("%s",str);
printf("ASCII values of each characters of given string:\n "
Similar questions