#include <stdio.h> char s[] = "CIA"; void main() { int i; for (i = 0; s[i] != '\0'; i++) { s[i] = s[i] - 'A' + '0'; } printf("%s",s); }
To embed this project on your website, copy the following code and paste it into your website's HTML: