Gideon Baturegideonbature.hashnode.dev·May 13, 2023The Ultimate Guide to Converting Uppercase and Lowercase Letters in C Using ASCIIIntroduction In this guide, you will learn the easiest and most direct way of converting uppercase and lowercase letters in C using ASCII ASCII is an acronym for American Standard Code for Information Interchange. This ASCII assigns a code called the...Discuss·10 likes·114 readsascii
Hari Krishna Anemharikrishna.hashnode.dev·Jan 20, 2022JavaScript: Convert last character of each word to uppercasefunction changeLastCharacterToUpperCase (str) { return str.split(" ").map( (item) => { return item.slice(0, -1) + item[item.length - 1].toUpperCase(); }).join (" "); } console.log(changeLastCharacterToUpperCase('hello world welcome testing a...Discusslast character