C++ Program to print character Get link Facebook X Pinterest Email Other Apps - May 27, 2015 0 Comments In C++, to get input by user, we use cin>> and to print something we use cout<<. #include<iostream> using namespace std; int main() { char ch; cout<<"Enter a character: "; cin>>ch; cout<<"Character is : "<<ch; return 0; } Get link Facebook X Pinterest Email Other Apps
C Program to toggle letter case - May 24, 2015 Simple C program to toggle alphabet case. For example if a character is 'S' then after toggle it will be 's'. Read more
Print a matrix in the wave form C program - July 05, 2015 You are given a matrix arr[m][n] then print it in the wave form as given in the image. Read more
C Program to calculate LCF - May 23, 2015 Simple C Program to calculate least common multiple of two numbers. Read more