C++ Program to print hello world Get link Facebook X Pinterest Email Other Apps - May 26, 2015 Simple C++ program to print hello world. #include<iostream> using namespace std; int main() { cout<<"Hello World\n"; 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