Input Character and Display Vowel or Not Programming

C++ – Input Character and Display Vowel or Not

  • March 16, 2016
  • 0 Comments

Write a program that prints the ASCII code of the input character (both upper case and lower case) and displays whether the character is a vowel or not. e.g. if ‘A’ is inputted then the output should be 65 and should display ‘vowel’. C++ Program to Implement Unary Operator Overloading C++ Program to Convert Degree […]

multiplication table using nested loop Programming

C Program to Print the Multiplication Table using Nested Loop.

  • March 15, 2016
  • 0 Comments

Write a program that prints a multiplication table using any one nested loop. This is a C++ program to print the multiplication table using a nested loop Source Code: #include<iostream.h> #include<conio.h> void main() { int i,j,c; for(i=1; i<=10; i++) { for(j=1; j<=10; j++) { c=i*j; cout<<c<<“t”; } cout<<“n”; } getch(); } Output: 1       2       3       […]

program to find leap year Programming

C++ Program to Find Leap Year by Using Function

  • March 3, 2016
  • 0 Comments

Write a program to find if the inputted year is a leap year or not by using the concept of function. Make a function that checks if the year is a leap year; C++ Program to Read and Write Files Using Multiple File Handling C++ Program to Check Whether the Entered Number is Palindrome or […]