Write a C Program that input any Small letter and display it with capital letter

In C programming language there are some excellent library function for processing character data. Text input or output, regardless of wh...
READ MORE +

Write a C Program that input any Capital letter and display it with small letter

The program segment given below converts an uppercase letter to lowercase. As the C language allows arithmetic operations on characters, ...
READ MORE +

Write a C Program that input any ASCII number and display appropriate character on screen

Program: #include<stdio.h> int main() {     int n;     printf("Please enter ASCII number: ");     scanf("%d...
READ MORE +

Write a C Program to accept any character from user and display its ASCII number on screen

C Program to Find ASCII Value of a Character Every character in C programming is given an integer value to represent it. That integer val...
READ MORE +

Write a C program to input two numbers and print their quotient and remainder

 In this program, user is asked to enter two integers(dividend and divisor) and this program will compute the quotient and remainder and ...
READ MORE +

Write a C Program to interchange values of two numbers using third variable

C program to swap two numbers with and without using third variable , swapping in c using pointers , functions (Call by reference) and...
READ MORE +