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 […]