Posts

Showing posts from December, 2021

Play With Characters in C Programming Language:

Play With Characters in C Programming Language: Write a program to accept a character from the user and display the character. Write a program to accept a character in lower case and display it in uppercase. Write a program to accept a character from the user and display its ASCII value. Write a program to accept a character in uppercase and display it in lowercase. Write a program to display the ASCII values of 0 and 9. Write a program to display the ASCII values from 0 to 9. Write a program to display the ASCII values of all characters from A to Z. Write a program to accept a character using getch(),getche() and getchar() functions and display the character. Write a program to let the user press any key on the keyboard until x  but count only how many upper case character keys are pressed on the keyboard? Q1 Solution: //program to accept a character from the user #include<stdio.h> int main() {     char ch;     printf("Enter a characte...