#include <stdio.h>
int main(void)
{
char s[] = "The Last LINE Of Code";
int i;
// A - 65 .. Z - 90 (ASCII)
// a - 97 .. Z - 122 (ASCII)
// 97 - 65 = 32
while (s[i])
{
if (s[i] >= 'A' && s[i] <= 'Z')
s[i] = 'a' + s[i] - 'A';
i++;
}
puts(s);
return 0;
}
/*
run:
The last line of code
*/