Contact Learn C
Copy

Program 225: Decryption of ASCII Code using C

Program 225
 
#include<stdio.h>
main()
{
//Prints ascii value of given string
int i,n;
 printf("Enter how many numbers are there\n");
 scanf("%d",&n);
 int num[n];
 printf("Enter a NUMBERS separated with space\n");
for(i=0;i<n;i++)
{
 scanf("%d",&num[i]);
} 
 printf("Decrypted ASCII code\n");
  for(i=0;i<n;i++)
  {  
    printf("%c",num[i]);
  }
  printf("\n");
}

Explanation:
//Coming Soon

Output: 

Decryption of ASCII Code using C





 
Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide